21 lines
328 B
Plaintext
21 lines
328 B
Plaintext
|
#!/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
|