dotfiles/.config/dwm/autostart.sh

33 lines
671 B
Bash
Raw Normal View History

2022-04-29 00:02:04 +02:00
#!/bin/bash
2022-05-21 21:23:14 +02:00
# Load top bar (Optional)
#dwmblocks &
2022-04-29 00:02:04 +02:00
# Network applet
#connman-gtk --tray &
nm-applet &
# Applet for Audio
pnmixer -t &
# Configure screens and resolution
2022-04-29 17:40:28 +02:00
~/.config/dwm/startxrandr.sh &
2022-04-29 00:02:04 +02:00
# Load compton or picom
#compton &
#sleep 15 && picom &
# Configure wallpaper
2022-05-01 11:58:42 +02:00
wallpaper_path="${HOME}/wallpapers/archlinux3.png"
#sleep 5 && nitrogen --head=0 --set-scaled ${wallpaper_path} &
sleep 5 && nitrogen --head=0 --set-scaled ${wallpaper_path} ; nitrogen --head=1 --set-zoom-fill ${wallpaper_path} &
2022-04-29 00:02:04 +02:00
# Configure screensaver
~/.config/dwm/startscreensaver.sh &
# Clipboard (Diodon)
diodon &
2022-05-20 19:25:37 +02:00
# Load Conky
sleep 10 && conky -c ~/.config/conky/conkyrc_dwm &