diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-26 13:58:10 +0000 |
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-26 13:58:10 +0000 |
| commit | 991c499599fbfe5d91501da57c0d7e42df9f9724 (patch) | |
| tree | 5d201c910bec2c71a17ce6a576179090d52de5da | |
| parent | bb4c5af86ce53699d64119cf2b008f7d6053ae51 (diff) | |
| download | dotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.tar.gz dotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.tar.bz2 dotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.zip | |
small changes to scripts
| -rwxr-xr-x | Scripts/.local/scripts/compositor | 5 | ||||
| -rwxr-xr-x | Scripts/.local/scripts/eselect | 6 |
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 |
