(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:
@@ -15,10 +15,7 @@ super + a
|
|||||||
dmenu_run
|
dmenu_run
|
||||||
|
|
||||||
super + e
|
super + e
|
||||||
$HOME/.local/scripts/emacs_curl;
|
emacsclient --eval '(emacs-everywhere)';
|
||||||
|
|
||||||
super + E
|
|
||||||
$HOME/.emacs_anywhere/bin/run
|
|
||||||
|
|
||||||
super + s
|
super + s
|
||||||
notify-send -u low "Launching browser"; \
|
notify-send -u low "Launching browser"; \
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ case "$(printf "new\nstop\nrestart\neshell\nmail" | dmenu -p "eserver: ")" in
|
|||||||
notify-send "Halted Emacs server";;
|
notify-send "Halted Emacs server";;
|
||||||
"new")
|
"new")
|
||||||
notify-send "Launching Emacs";
|
notify-send "Launching Emacs";
|
||||||
emacsclient -c --alternate-editor=emacs;;
|
emacsclient -c;;
|
||||||
"eshell")
|
"eshell")
|
||||||
notify-send "Launching 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")
|
"mail")
|
||||||
notify-send "Launching notmuch";
|
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
|
esac
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
title=$(playerctl --player=spotify metadata title)
|
title=$(playerctl --player=spotify metadata title | cut -c 1-30)
|
||||||
echo "${title::40}"
|
echo " $title"
|
||||||
|
|||||||
Reference in New Issue
Block a user