21 lines
328 B
Bash
21 lines
328 B
Bash
#!/bin/bash
|
|
|
|
[[ "$(xrandr --listmonitors)" == *"HDMI2"* ]] && /home/fr/.screenlayout/home.sh
|
|
|
|
feh --bg-center "/home/fr/Pictures/bg.png" &
|
|
|
|
xautolock -locker slock -detectsleep -secure -time 10 &
|
|
|
|
pipewire &
|
|
pipewire-pulse &
|
|
dwmblocks &
|
|
|
|
while true; do
|
|
/home/fr/.scripts/batterycheck
|
|
sleep 30
|
|
done &
|
|
|
|
while true; do
|
|
dwm
|
|
done
|