20 lines
402 B
Plaintext
20 lines
402 B
Plaintext
# Wallpaper
|
|
if [ -f $HOME/Pictures/greenfluorescence2k151_single_1920x1080.jpg ]; then
|
|
feh --bg-scale $HOME/Pictures/greenfluorescence2k151_single_1920x1080.jpg &
|
|
fi
|
|
|
|
# Compositor
|
|
if command -v picom > /dev/null 2>&1; then
|
|
picom &
|
|
fi
|
|
|
|
# Night mode
|
|
if command -v redshift > /dev/null 2>&1; then
|
|
redshift &
|
|
fi
|
|
|
|
# Desktop switcher
|
|
if command -v obpager > /dev/null 2>&1; then
|
|
obpager &
|
|
fi
|