(SXHkD|Scripts)~changed some details

~ made emacsclient calls with no alternate editors in
  eselect (confidence in server)
~ made notmuch option on eselect actually work properly
~ adjusted icons in status scripts
This commit is contained in:
2022-09-14 00:04:20 +01:00
parent 63dbce1357
commit ad853af43b
4 changed files with 7 additions and 10 deletions

View File

@@ -15,10 +15,7 @@ super + a
dmenu_run
super + e
$HOME/.local/scripts/emacs_curl;
super + E
$HOME/.emacs_anywhere/bin/run
emacsclient --eval '(emacs-everywhere)';
super + s
notify-send -u low "Launching browser"; \

View File

@@ -9,11 +9,11 @@ case "$(printf "new\nstop\nrestart\neshell\nmail" | dmenu -p "eserver: ")" in
notify-send "Halted Emacs server";;
"new")
notify-send "Launching Emacs";
emacsclient -c --alternate-editor=emacs;;
emacsclient -c;;
"eshell")
notify-send "Launching Eshell";
emacsclient -c --alternate-editor=emacs --eval '(let ((b (or (get-buffer "*eshell*") (eshell)))) (switch-to-buffer b))';;
emacsclient -c --eval '(let ((b (or (get-buffer "*eshell*") (eshell)))) (switch-to-buffer b))';;
"mail")
notify-send "Launching notmuch";
emacsclient -c --alternate-editor=emacs --eval '(let ((b (or (get-buffer "*notmuch-hello*") (notmuch)))) (switch-to-buffer b))';;
emacsclient -c --eval '(let ((b (or (get-buffer "*notmuch-hello*") (progn (notmuch) (get-buffer "*notmuch-hello*"))))) (switch-to-buffer b))';;
esac

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
title=$(playerctl --player=spotify metadata title)
echo "${title::40}"
title=$(playerctl --player=spotify metadata title | cut -c 1-30)
echo " $title"