diff options
author | pks <pks@pks.rocks> | 2021-06-06 15:04:56 +0200 |
---|---|---|
committer | pks <pks@pks.rocks> | 2021-06-06 15:04:56 +0200 |
commit | 64f82886ee01d031ec17f90452b11288118a0a90 (patch) | |
tree | 2fd704de912fd6bf80e14201e0eb98c82625cc9f | |
parent | 341d7b2622d26cbfb6c13e536c41c04251aaae3c (diff) |
autostart: prevent pressing capslock on startup
-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 |