diff options
Diffstat (limited to 'autostart')
-rwxr-xr-x | autostart | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,9 +1,9 @@ #!/usr/bin/env zsh -feh --no-xinerama --image-bg black --bg-fill "$HOME/image/MIPS-R3000A-die.jpg" & -xmodmap $HOME/.Xmodmap & -xbindkeys & -urxvtd -q -f -o & +xmodmap $HOME/.Xmodmap +xbindkeys +feh --no-xinerama --image-bg black --bg-fill "$HOME/image/MIPS-R3000A-die.jpg" +urxvtd -q -f -o imwheel &>/dev/null & unclutter -idle 5 & xset s 0 & @@ -26,7 +26,9 @@ if [[ $(hostname) == "bogues" ]]; then fi if [[ -x $(which notmuchfs) ]]; then - mkdir -p /tmp/pks/notmuchfs - mkdir -p /tmp/pks/notmuchfs_backing - notmuchfs /tmp/pks/notmuchfs -o backing_dir=/tmp/pks/notmuchfs_backing -o mail_dir=$HOME/.mail -o mutt_2476_workaround + mkdir -p /tmp/pks/notmuchfs /tmp/pks/notmuchfs_backing + notmuchfs /tmp/pks/notmuchfs \ + -o backing_dir=/tmp/pks/notmuchfs_backing \ + -o mail_dir=$HOME/.mail \ + -o mutt_2476_workaround fi |