aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xScripts/.local/scripts/compositor5
-rwxr-xr-xScripts/.local/scripts/eselect6
2 files changed, 4 insertions, 7 deletions
diff --git a/Scripts/.local/scripts/compositor b/Scripts/.local/scripts/compositor
index 903ee30..b81a155 100755
--- a/Scripts/.local/scripts/compositor
+++ b/Scripts/.local/scripts/compositor
@@ -1,7 +1,4 @@
#!/usr/bin/env sh
killall picom;
-picom \
- --backend glx \
- --no-fading-openclose \
- ;
+picom --config ~/.config/picom/picom.conf;
diff --git a/Scripts/.local/scripts/eselect b/Scripts/.local/scripts/eselect
index 4c8de15..1e9e216 100755
--- a/Scripts/.local/scripts/eselect
+++ b/Scripts/.local/scripts/eselect
@@ -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