mirror of
https://git.poridge.club/aurel1on/dwm-cute.git
synced 2024-11-09 19:30:28 +03:00
20 lines
363 B
Bash
20 lines
363 B
Bash
#!/bin/sh
|
|
|
|
#picom -b --vsync --experimental-backends
|
|
#feh --bg-scale ~/path/to/img.png
|
|
#setxkbmap us,ru -option 'grp:shift_alt_toggle'
|
|
|
|
# Statusbar loop
|
|
while true; do
|
|
ubar
|
|
sleep 1s # Update time every second
|
|
done &
|
|
|
|
# relaunch DWM
|
|
while true; do
|
|
# Log stderror to a file
|
|
dwm 2> ~/.dwm.log
|
|
# No error logging
|
|
#dwm >/dev/null 2>&1
|
|
done
|