21 lines
546 B
Text
21 lines
546 B
Text
|
#!/usr/bin/env sh
|
||
|
|
||
|
# shellcheck source=../lib/usr/lib/sh/loading.sh
|
||
|
. ~/usr/lib/sh/loading.sh
|
||
|
|
||
|
xrdb -cpp m4 -merge "${HOME}/.config/X11/Xresources" \
|
||
|
-I"${HOME}/.config/X11/Xresources.d"
|
||
|
|
||
|
load_machine_config ".config/X11/machines"
|
||
|
load_config_directory ".config/X11/Xsession.d"
|
||
|
|
||
|
command -v kdeconnect-indicator \
|
||
|
&& (pgrep kdeconnect-indicator \
|
||
|
|| { kdeconnect-indicator & })
|
||
|
|
||
|
command -v syncthing-gtk \
|
||
|
&& (pgrep syncthing-gtk \
|
||
|
|| { syncthing-gtk & })
|
||
|
|
||
|
command -v unclutter && (pgrep unclutter || unclutter --fork)
|