25 lines
639 B
Plaintext
25 lines
639 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
|
|
|
|
# 3/25/2025 - Desktop switcher doesn't work...
|
|
# Could not create/show/run pager:
|
|
# src/OBPager.cc:649:getAtomAsLongs:Cannot get X Property for Atom
|
|
# 0x139 = '_NET_ACTIVE_WINDOW', result = 0, actualType = 0
|
|
|
|
# Desktop switcher
|
|
#if command -v obpager > /dev/null 2>&1; then
|
|
# obpager >> ~/misc/obpager.log 2>&1
|
|
#fi
|