diff --git a/my_home/.config/openbox/autostart b/my_home/.config/openbox/autostart new file mode 100644 index 0000000..e3e8e67 --- /dev/null +++ b/my_home/.config/openbox/autostart @@ -0,0 +1,19 @@ +# 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 diff --git a/my_home/Pictures/greenfluorescence2k151_single_1920x1080.jpg b/my_home/Pictures/greenfluorescence2k151_single_1920x1080.jpg new file mode 100644 index 0000000..4d7dba1 Binary files /dev/null and b/my_home/Pictures/greenfluorescence2k151_single_1920x1080.jpg differ