#!/usr/bin/env bash # Show or hide polybar. Bound to super + b. if pgrep -x polybar >/dev/null 2>&1; then pkill -x polybar else sh "$HOME/.config/polybar/launch.sh" >/dev/null 2>&1 & fi