dotfiles/.config/qtile/autostart.sh

29 lines
535 B
Bash
Raw Normal View History

2022-04-23 21:36:03 +02:00
#!/bin/sh
# Network applet
#connman-gtk --tray &
nm-applet
# Applet for Audio
pnmixer -t &
# Configure screens and resolution
~/.config/qtile/startxrandr.sh &
# Load compton or picom
#compton &
#sleep 15 && picom &
# Configure wallpaper
sleep 3 && nitrogen --head=0 --set-scaled ~/wallpapers/archlinux2.jpg
nitrogen --head=1 --set-zoom-fill ~/wallpapers/archlinux2.jpg
# Configure screensaver
2022-04-29 00:02:04 +02:00
~/.config/qtile/startscreensaver.sh &
2022-04-23 21:36:03 +02:00
# Clipboard (Diodon)
diodon &
2022-05-20 00:06:39 +02:00
# Load Conky
sleep 10 && conky -c ~/.config/conky/conkyrc_qtile &