Files
dtos-dotfiles/.config/qtile/autostart.sh
2023-08-15 13:32:35 -05:00

23 lines
725 B
Bash
Executable File

#!/usr/bin/env bash
CONKYSTYLE="01"
COLORSCHEME=$(grep "^colors = colors.*" "$HOME"/.config/qtile/config.py | cut -d '.' -f2)
lxsession &
picom &
/usr/bin/emacs --daemon &
killall conky
sleep 2 && conky -c "$HOME"/.config/conky/qtile/"$CONKYSTYLE"/"$COLORSCHEME".conkyrc &
copyq &
nm-applet &
pamac-tray-icon-plasma &
"$HOME"/.screenlayout/layout.sh &
### 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 &