startup (740B)
1 #!/bin/bash 2 3 #~/bin/fix_ux330u 4 5 gnome-keyring-daemon --replace --daemonize --components=gpg,pkcs11,secrets,ssh 6 7 #~/bin_private/proxy.sh 8 ~/bin/notmuch-new.sh & 9 urxvtd & 10 ~/bin_private/myfetchmail 11 ~/bin/rehashpath 12 nm-applet & 13 rm ~/temp/terminals 14 15 # no longer working: ~/bin_private/logkeys 16 # no longer working: ~/bin/kiwix 17 18 # pulseaudio cannot start by itself due to the uncommon socket folder 19 pulseaudio & 20 21 # is there a better way to reset xhost permissions? 22 xhost +si:localuser:`whoami` 23 xhost | sed 1d | grep -v `whoami` | while read l; do 24 xhost "-$l" 25 done 26 27 # for now, browser can access the X server 28 # TODO: use wayland 29 xhost +si:localuser:browser 30 xhost +si:localuser:browser2 31 xhost +si:localuser:bitcoin 32 xhost +si:localuser:browser_tor 33