summaryrefslogtreecommitdiffstats
path: root/.local/bin/change-theme
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/change-theme')
-rwxr-xr-x.local/bin/change-theme4
1 files changed, 3 insertions, 1 deletions
diff --git a/.local/bin/change-theme b/.local/bin/change-theme
index 5d997cd..7b20bde 100755
--- a/.local/bin/change-theme
+++ b/.local/bin/change-theme
@@ -20,7 +20,9 @@ printf "*.foreground: $fg\n*.background: $bg" | xrdb -override
printf "*VT100*foreground: $fg\n*VT100*background: $bg" | xrdb -override
# emacs
-emacsclient -ue "(set-face-attribute 'default nil :foreground \"$fg\" :background \"$bg\")"
+if [ "$(pgrep -u $USER emacs)" ]; then
+ emacsclient -ue "(set-face-attribute 'default nil :foreground \"$fg\" :background \"$bg\")"
+fi
# terminals
for term in /dev/pts/*; do
if [ -w "$term" ]; then