configuration/xinitrc

28 lines
538 B
Plaintext
Raw Normal View History

2015-04-18 21:28:33 +02:00
#!/bin/sh
2016-07-14 23:41:22 +02:00
# My lovely bar
bar() {
while sleep 1; do
2016-08-08 12:01:00 +02:00
xsetroot -name "B$(acpi -b | tr -d ' ' | cut -d',' -f2) $(date +'%a %d %b, %I:%M')"
2016-07-14 23:41:22 +02:00
done
}
2015-04-18 21:28:33 +02:00
# Forking graphical programs
forklog() {
2015-05-04 20:24:23 +02:00
$* 2>&1 | logger &
2015-04-18 21:28:33 +02:00
}
2017-02-13 18:12:07 +01:00
forklog xcape -t 100 -e 'Super_L=Scroll_Lock;Shift_L=Escape;Alt_L=Control_R|G'
2016-03-16 23:49:22 +01:00
forklog sh ~/.fehbg
2016-09-21 17:24:17 +02:00
forklog xautolock -time 1 -locker slock
2016-11-05 03:11:18 +01:00
forklog redshift -l 51.2:3.75
2015-05-04 20:24:23 +02:00
forklog xset dpms 0 0 50 s off
2016-12-12 23:24:45 +01:00
forklog xset r rate 300 55
2016-07-14 23:41:22 +02:00
forklog bar
2015-04-18 21:28:33 +02:00
2016-03-16 23:49:22 +01:00
#forklog sxhkd -c ~/.config/sxhkd/sxhkd.conf
#exec nwm
2016-07-14 23:41:22 +02:00
exec dwmdb