dotfiles/.config/dwm/autostart.sh

33 lines
680 B
Bash
Raw Permalink Normal View History

2022-04-29 00:02:04 +02:00
#!/bin/bash
# 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-21 22:13:23 +02:00
wallpaper_path="${HOME}/wallpapers/awesome.jpg"
2022-05-01 11:58:42 +02:00
#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
2022-05-22 01:17:37 +02:00
# Status bar
~/.config/dwm/scripts/status_bar.sh &
2022-05-20 19:25:37 +02:00
# Load Conky
sleep 10 && conky -c ~/.config/conky/conkyrc_dwm &