mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 20:10:23 +10:00
21 lines
641 B
Bash
Executable File
21 lines
641 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
COLORSCHEME=DoomOne
|
|
|
|
### AUTOSTART PROGRAMS ###
|
|
lxsession &
|
|
picom --daemon &
|
|
/usr/bin/emacs --daemon &
|
|
nm-applet &
|
|
"$HOME"/.screenlayout/layout.sh &
|
|
sleep 1
|
|
conky -c "$HOME"/.config/conky/qtile/01/"$COLORSCHEME".conf || echo "Couldn't start conky."
|
|
|
|
### UNCOMMENT ONLY ONE OF THE FOLLOWING THREE OPTIONS! ###
|
|
# 1. Uncomment to restore last saved wallpaper
|
|
xargs xwallpaper --stretch < ~/.cache/wall &
|
|
# 2. Uncomment to set a random wallpaper on login
|
|
# find /usr/share/backgrounds/dtos-backgrounds/ -type f | shuf -n 1 | xargs xwallpaper --stretch &
|
|
# 3. Uncomment to set wallpaper with nitrogen
|
|
# nitrogen --restore &
|