From 37b7a8799da171f0a5b67b2593922383ea59c5f9 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Thu, 2 Jan 2020 19:24:30 +0100 Subject: [PATCH] delete crap --- README.md | 2 + networking/qutebrowser | 6 - networking/screenrc | 108 ------------------ networking/ssh/sshfs | 4 - networking/tor | 22 ---- .../{wpa_supplicant => wpa_supplicant.md} | 2 - 6 files changed, 2 insertions(+), 142 deletions(-) delete mode 100644 networking/qutebrowser delete mode 100644 networking/screenrc delete mode 100644 networking/ssh/sshfs delete mode 100644 networking/tor rename networking/{wpa_supplicant => wpa_supplicant.md} (97%) diff --git a/README.md b/README.md index ebda7d0..6221942 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,5 @@ This is a list of quickstart guides for Linux programs. This started as a few personal notes, and will probably continue to look like that for some time. It's a bit of a mess. + +Systemd is taken as a default. Non-systemd commands we relegate to their respective distros, e.g. runit for Void Linux. diff --git a/networking/qutebrowser b/networking/qutebrowser deleted file mode 100644 index 87a392e..0000000 --- a/networking/qutebrowser +++ /dev/null @@ -1,6 +0,0 @@ -set tabs.position left - -# Download css files to theme. - -:set content.user_stylesheets - diff --git a/networking/screenrc b/networking/screenrc deleted file mode 100644 index 1817e81..0000000 --- a/networking/screenrc +++ /dev/null @@ -1,108 +0,0 @@ -# $Id: screenrc,v 1.15 2003/10/08 11:39:03 zal Exp $ -# -# /etc/screenrc -# -# This is the system wide screenrc. -# -# You can use this file to change the default behavior of screen system wide -# or copy it to ~/.screenrc and use it as a starting point for your own -# settings. -# -# Commands in this file are used to set options, bind screen functions to -# keys, redefine terminal capabilities, and to automatically establish one or -# more windows at the beginning of your screen session. -# -# This is not a comprehensive list of options, look at the screen manual for -# details on everything that you can put in this file. -# - -# ------------------------------------------------------------------------------ -# SCREEN SETTINGS -# ------------------------------------------------------------------------------ - -startup_message off -#nethack on - -#defflow on # will force screen to process ^S/^Q -deflogin on -#autodetach off - -# turn visual bell on -vbell on -vbell_msg " Wuff ---- Wuff!! " - -# define a bigger scrollback, default is 100 lines -defscrollback 1024 - -# ------------------------------------------------------------------------------ -# SCREEN KEYBINDINGS -# ------------------------------------------------------------------------------ - -# Remove some stupid / dangerous key bindings -bind ^k -#bind L -bind ^\ -# Make them better -bind \\ quit -bind K kill -bind I login on -bind O login off -bind } history - -# An example of a "screen scraper" which will launch urlview on the current -# screen window -# -#bind ^B eval "hardcopy_append off" "hardcopy -h $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview" - -# ------------------------------------------------------------------------------ -# TERMINAL SETTINGS -# ------------------------------------------------------------------------------ - -# The vt100 description does not mention "dl". *sigh* -termcapinfo vt100 dl=5\E[M - -# turn sending of screen messages to hardstatus off -hardstatus off -# Set the hardstatus prop on gui terms to set the titlebar/icon title -termcapinfo xterm*|rxvt*|kterm*|Eterm* hs:ts=\E]0;:fs=\007:ds=\E]0;\007 -# use this for the hard status string -hardstatus string "%h%? users: %u%?" - -# An alternative hardstatus to display a bar at the bottom listing the -# windownames and highlighting the current windowname in blue. (This is only -# enabled if there is no hardstatus setting for your terminal) -# -#hardstatus lastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<" - -# set these terminals up to be 'optimal' instead of vt100 -termcapinfo xterm*|linux*|rxvt*|Eterm* OP - -# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E> -# (This fixes the "Aborted because of window size change" konsole symptoms found -# in bug #134198) -termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l' - -# To get screen to add lines to xterm's scrollback buffer, uncomment the -# following termcapinfo line which tells xterm to use the normal screen buffer -# (which has scrollback), not the alternate screen buffer. -# -#termcapinfo xterm|xterms|xs|rxvt ti@:te@ - -# Enable non-blocking mode to better cope with flaky ssh connections. -defnonblock 5 - -# ------------------------------------------------------------------------------ -# STARTUP SCREENS -# ------------------------------------------------------------------------------ - -# Example of automatically running some programs in windows on screen startup. -# -# The following will open top in the first window, an ssh session to monkey -# in the next window, and then open mutt and tail in windows 8 and 9 -# respectively. -# -# screen htop -# screen -t monkey ssh monkey -# screen -t mail 8 mutt -# screen -t daemon 9 tail -f /var/log/daemon.log - diff --git a/networking/ssh/sshfs b/networking/ssh/sshfs deleted file mode 100644 index bcfdabc..0000000 --- a/networking/ssh/sshfs +++ /dev/null @@ -1,4 +0,0 @@ -Auto-mounting an sshfs directory can be done with an /etc/fstab entry: - -`sshfs#pi@belgradecats.tk:/home/pi/cats /home/ghost/cuties fuse defaults,allow_other,reconnect,delay_connect 0 0` - diff --git a/networking/tor b/networking/tor deleted file mode 100644 index afef73c..0000000 --- a/networking/tor +++ /dev/null @@ -1,22 +0,0 @@ -# I've added lines to /etc/network/interfaces. They might need to all be remove (1st line is original). - -#I've added lines to /etc/tor/torrc. The documentation on torproject.org states this should be in /usr/local/etc/tor/torrc, but I don't have that file. - -# Tor must be enabled with - -sysrc tor_enable=YES -service tor start - -# And it's recommended to use "random id" by adding -echo "net.inet.ip.random_id=1" >> /etc/sysctl.conf -sysctl net.inet.ip.random_id=1 - -# Opening firewall ports 9030 and 9001 -# They seem to be already open - -# Checking CPU usage. It's around 0.30 average. -# Checking logs -sudo less /var/log/tor/log -# Seems like it's working. - - diff --git a/networking/wpa_supplicant b/networking/wpa_supplicant.md similarity index 97% rename from networking/wpa_supplicant rename to networking/wpa_supplicant.md index c796dae..f2e64d6 100644 --- a/networking/wpa_supplicant +++ b/networking/wpa_supplicant.md @@ -2,8 +2,6 @@ wpa_supplicant configurations are stored in /etc/wpa_supplicant/wpa_supplicant-wlan0 (or equivalent). -A default is presented. - # Generating Keys Manually > wpa_passphrase [ssid] [password]