initial dotfiles

This commit is contained in:
srtk 2026-04-25 16:39:11 +05:30
commit 45e5fe53d2
370 changed files with 25449 additions and 0 deletions

15
.config/polybar/launch.sh Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
killall -q polybar
while pgrep -x polybar >/dev/null; do sleep 1; done
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload &
done
else
polybar --reload &
fi
echo "Polybar запущен..."