siduck / st

snazzy terminal (suckless + beautiful)
MIT License
625 stars 94 forks source link

Killing terminals instead of reloading them #41

Closed PoSayDone closed 2 years ago

PoSayDone commented 2 years ago

Hi! I'm trying to add "xrdb merge ~/.cache/wal/colors.Xresources && kill -USR1 $(pidof st)" to my bspwmrc, bspwm just killing all st windows instead of reloading colors from xresources file.

siduck commented 2 years ago

killall st

PoSayDone commented 2 years ago

killall st

doesn't work, still just killing

fixed with making additional script with this command

#!/bin/zsh

xrdb merge ~/.cache/wal/colors.Xresources && kill -USR1 $(pidof st)