initial dotfiles
This commit is contained in:
commit
45e5fe53d2
370 changed files with 25449 additions and 0 deletions
15
.config/polybar/launch.sh
Executable file
15
.config/polybar/launch.sh
Executable 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 запущен..."
|
||||
Loading…
Add table
Add a link
Reference in a new issue