diff options
author | pks <pks@pks.rocks> | 2020-11-10 12:17:10 +0100 |
---|---|---|
committer | pks <pks@pks.rocks> | 2020-11-10 12:17:10 +0100 |
commit | 47b87996a9585d947700996b098cef3111eb32b4 (patch) | |
tree | 7015485d4be666b3525b047b40398705f04cd35e | |
parent | 175847352f0b6ec9115563d478452279850551ac (diff) |
updated autostart
-rwxr-xr-x | autostart | 31 |
1 files changed, 11 insertions, 20 deletions
@@ -1,40 +1,31 @@ #!/usr/bin/env zsh feh --no-xinerama --image-bg black --bg-fill "$HOME/image/MIPS-R3000A-die.jpg" & - -xset s 0 & -xset b off & -xset +fp $HOME/.fonts & - -mkdir -p /tmp/pks/.cache /tmp/pks/.ccache /tmp/mutt & - xmodmap $HOME/.Xmodmap & xbindkeys & - urxvtd -q -f -o & - imwheel &>/dev/null & unclutter -idle 5 & +xset s 0 & +xset b off & +xset +fp $HOME/.fonts & +xset -display :0 dpms 0 0 300 +notification-daemon-launch & +mouse-settings & +sloppy & -if [[ -x $(which sloppy) ]]; then - sloppy & -fi - -$HOME/.local/bin/notification-daemon-launch & +mkdir -p /tmp/pks/.cache /tmp/pks/.ccache /tmp/pks/mutt & if [[ $RATPOISON == "ratpoison" && -x $(which acpi 2&>/dev/null) ]]; then $HOME/.local/bin/ratcpi & fi -$HOME/.local/bin/mouse-settings & - if [[ $(hostname) == "bogues" ]]; then xrandr --output VGA1 --off & - - mkdir -p /storage/tmp - sudo chmod 777 /storage/tmp fi if [[ -x $(which notmuchfs) ]]; then - notmuchfs ~/.notmuchfs -o backing_dir=$HOME/.notmuchfs_backing -o mail_dir=$HOME/.mail -o mutt_2476_workaround + 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 fi |