summaryrefslogtreecommitdiffstats
path: root/.local/bin/startup-progs
blob: 0c37df0581b2cc7ee6aa81aff576853f2765345c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

resources="~/.Xresources ~/.Xresources.d/$(hostname)"
for res in $resources; do [ -f "$res" ] && xrdb -merge "$res"; done

xsetroot -cursor_name left_ptr
xset r rate 200 45
xset b off

light -N 1

[ -x "$(command -v dunst)" ]     && dunst &
[ -x "$(command -v nm-applet)" ] && nm-applet &
[ -x "$(command -v pasystray)" ] && pasystray -a &