blob: 178f895166cb1ec5a55b16db7f18ae572998cfa8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# this is max jank but xfsettingsd does other things besides live gtk theme
# reloading, and i don't like having it running constantly because it fucks
# up fcitx5 and xbindkeys
(
fork xfsettingsd
sleep 1
killall xfsettingsd
)
|