Duplicating network thing on bspwm reload

Hi, i have had this issue since i started using the bspwm community ed, when i reload bspwm the network thing duplicates

before:
network thing
after:
network thing after

(in the before there should be only one network thing, but when i screenshotted i had already reloaded)

@arandomperson, Welcome to the forum.
That network thing is firewall-applet.
When you restart bspwm with Super+Alt+r the previous process is not killed.
An ugly workaround:
modify this section of ~/.config/sxhkd/sxhkdrc

# restart bspwm
super + alt + r
	~/.config/bspwm/scripts/restart.sh

# quit bspwm
super + alt + q
	bspc quit

create
~/.config/bspwm/scripts/restart.sh

#!/bin/bash
killall firewall-applet
bspc wm -r

(chmod +x ~/.config/bspwm/scripts/restart.sh)

thx

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.