2015-04-18 21:28:33 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Forking graphical programs
|
|
|
|
forklog() {
|
2015-05-04 20:24:23 +02:00
|
|
|
$* 2>&1 | logger &
|
2015-04-18 21:28:33 +02:00
|
|
|
}
|
|
|
|
|
2018-06-26 15:37:34 +02:00
|
|
|
xset dpms 0 0 50 s off
|
|
|
|
xset r rate 300 55
|
2018-09-13 09:41:04 +02:00
|
|
|
# xsetroot -solid "#002a3b"
|
2018-06-26 15:37:34 +02:00
|
|
|
|
2018-10-22 23:11:44 +02:00
|
|
|
forklog feh --bg-fill $(find -L /data/pictures/background-source/ -type f | sort -R | head)
|
2018-08-13 13:53:33 +02:00
|
|
|
forklog xcape -t 80 -e 'Shift_L=Escape;Alt_L=Control_R|G'
|
2016-11-05 03:11:18 +01:00
|
|
|
forklog redshift -l 51.2:3.75
|
2015-04-18 21:28:33 +02:00
|
|
|
|
2018-06-26 15:37:34 +02:00
|
|
|
exec dwm
|
2016-01-06 23:55:56 +01:00
|
|
|
|
2018-04-09 18:05:57 +02:00
|
|
|
exec valgrind --extra-debuginfo-path=/data/programming/dwm/ --track-origins=yes --leak-check=full --show-leak-kinds=all dwm
|