blob: a6dbb34d3ef00ee53b1ce90feaaba7a507526743 (
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 --replace
sleep 1
killall xfsettingsd
)
|