diff options
Diffstat (limited to 'bin/comm-sel')
-rwxr-xr-x | bin/comm-sel | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/comm-sel b/bin/comm-sel index ce2e99b..c5508cf 100755 --- a/bin/comm-sel +++ b/bin/comm-sel @@ -1,6 +1,6 @@ #!/bin/sh # sends a list of communication TUIs (e.g catgirl) to dmenu and allows the user to choose one. -# class "comm" is added to enable window managers (e.g dwm) to do specific things with them. +# class "comm" is added to enable window managers (e.g ewm) to do specific things with them. case "$TERMINAL" in xterm) CLASS='-class';; urxvt) CLASS='-name';; @@ -8,7 +8,7 @@ case "$TERMINAL" in esac case "$(dmenu_path|grep -E "catgirl$|cordless|scli$"|dmenu -p "choose chat app:")" in catgirl) catgirl-open.sh &;; - cordless) $TERMINAL $CLASS comm -e env TERM=xterm-256color cordless -config-dir "$XDG_CONFIG_HOME/cordless" &;; + cordless) $TERMINAL $CLASS comm -e env TERM=xterm-256color cordless &;; scli) $TERMINAL $CLASS comm -e scli&;; *) return;; esac |