36 lines
566 B
Bash
36 lines
566 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Network applet
|
||
|
#connman-gtk --tray &
|
||
|
nm-applet &
|
||
|
|
||
|
# Applet for Audio
|
||
|
pnmixer -t &
|
||
|
|
||
|
# Configure screens and resolution
|
||
|
~/.config/dwl/startwlrrandr.sh &
|
||
|
|
||
|
# Configure wallpaper
|
||
|
swaybg -i ~/wallpapers/sarosi/39.png -m fill &
|
||
|
|
||
|
# Run terminal
|
||
|
kitty &
|
||
|
|
||
|
# Configure screensaver
|
||
|
~/.config/dwl/startscreensaver.sh &
|
||
|
|
||
|
# Clipboard (Diodon)
|
||
|
diodon &
|
||
|
|
||
|
# Status bar
|
||
|
/usr/bin/somebar &
|
||
|
|
||
|
# Load Conky
|
||
|
sleep 10 && nwg-wrapper -s conky_dwl.sh -r 2000 -p right -mr 15 -mt 10 -mb 80 &
|
||
|
|
||
|
# Load Keepass
|
||
|
sleep 5 && keepassxc &
|
||
|
|
||
|
# Load electronmail
|
||
|
sleep 3 && electron-mail &
|