feat: update polybar, bspwm and sxhkd configs for PC and only polybar for Laptop

This commit is contained in:
2025-09-16 20:42:29 +04:00
parent f9f27dbe33
commit a61455a7cc
7 changed files with 97 additions and 39 deletions

15
PC/polybar/launch.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Terminate already running bar instances
# If all your bars have ipc enabled, you can use
polybar-msg cmd quit
# Otherwise you can use the nuclear option:
# killall -q polybar
# Launch bar1 and bar2
echo "---" | tee -a /tmp/polybar1.log
# echo "---" | tee -a /tmp/polybar2.log
polybar prime 2>&1 | tee -a /tmp/polybar1.log & disown
polybar second 2>&1 | tee -a /tmp/polybar2.log & disown
echo "Bars launched..."