1234567891011121314151617 |
- # config
- setxkbmap de,at
- xset r rate 200 60
- xset m 0 0
- # wall
- _get_WP() {
- echo ~/.config/walls/wall$(($(($(($(date +%M))) % $(($(ls ~/.config/walls | wc -l))))) + 1)).png
- }
- # run
- xautolock -time 10 -locker slock &
- slstatus &
- xbindkeys -p &
- feh --bg-fill $(_get_WP) &
- exec dwm
|