mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
6 lines
139 B
Bash
Executable file
6 lines
139 B
Bash
Executable file
#!/usr/bin/env bash
|
|
u=$(xprop -name "Polybar tray window" _NET_WM_PID | awk '{print $3}')
|
|
if [ $u -Z ]
|
|
then polybar tray &
|
|
else kill $u
|
|
fi
|