small changes to scripts

This commit is contained in:
2025-10-26 13:58:10 +00:00
parent bb4c5af86c
commit 991c499599
2 changed files with 4 additions and 7 deletions

View File

@@ -1,7 +1,4 @@
#!/usr/bin/env sh
killall picom;
picom \
--backend glx \
--no-fading-openclose \
;
picom --config ~/.config/picom/picom.conf;

View File

@@ -10,11 +10,11 @@ case "$(printf "new\nstop\nrestart\neshell\nmail" | dmenu -p "eserver: ")" in
notify-send "eselect: Halted server";;
"new")
notify-send "eselect: Launching Emacs" && \
emacsclient -c -a "";;
emacsclient -c -a "emacs";;
"eshell")
notify-send "eselect: Launching Eshell" && \
emacsclient -c -a "" --eval "(progn (eshell) (delete-other-windows))";;
emacsclient -c -a "emacs" --eval "(progn (eshell) (delete-other-windows))";;
"mail")
notify-send "eselect: Launching notmuch" && \
emacsclient -c -a "" --eval "(progn (notmuch) (delete-other-windows))";;
emacsclient -c -a "emacs" --eval "(progn (notmuch) (delete-other-windows))";;
esac