blob: dbf7bed6569411e1ba00ca5c82095f7cab980d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
runifnot () {
if type $1 >/dev/null; then
echo $1
if [ -z "$(pgrep -Uzachir -f $1)" ]; then
$@ &
fi
fi
}
killandrun () {
if type $1 >/dev/null; then
echo $1
if [ -n "$(pgrep -Uzachir -f $1)" ]; then
pkill -Uzachir $1
fi
$@ &
fi
}
if [ -n "${WAYLAND_DISPLAY}${DISPLAY}" ]; then
notify-sound.sh off &
if [ -n "$WAYLAND_DISPLAY" ]; then
runifnot swayidle
killandrun hyprpaper
#launch_waybar.sh "$(crcparse WC)"
runifnot waybar -c ~/.config/waybar/config-"$(basename "$(crcparse WC)")"
gsettings set $gnome-schema gtk-theme 'Plata-Noir-Compact'
gsettings set $gnome-schema icon-theme 'Mint-Y-Dark-Blue'
gsettings set $gnome-schema cursor-theme 'Adwaita'
if [ "$(crcparse WC | xargs basename)" = "Hyprland" ]; then
xrdb ~/.Xresources
fi
else
#runifnot picom
runifnot caffeine
runifnot xss-lock slockd
runifnot sxhkd
if "$(type xmonad >/dev/null 2>&1)"; then
if ["$(crcparse WM)" = "$(which xmonad)" ]; then
runifnot stalonetray
fi
fi
xwallpaper --zoom ~/background.jpg
setxkbmap -option "caps:escape"
fi
runifnot portmaster-start --data=/opt/safing/portmaster notifier
fi
[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh"
|