diff options
-rw-r--r-- | .config/zsh/alias.zsh | 6 | ||||
-rwxr-xr-x | .local/bin/dmbin | 6 | ||||
-rwxr-xr-x | .local/bin/dmconf | 6 | ||||
-rwxr-xr-x | .local/bin/dme | 6 |
4 files changed, 3 insertions, 21 deletions
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index f194f9a..d4d4a7c 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -107,21 +107,21 @@ econf() { } eebin() { file=$(find "$HOME"/.local/bin -type f | fzf) + [ $? -ne 0 ] && return bsdsetsid emacsclient -c "$file" kill -9 "$(ps -p $$ -oppid=)" - exit } eeconf() { file=$(find "$HOME"/.config -type f | fzf) + [ $? -ne 0 ] && return bsdsetsid emacsclient -c "$file" kill -9 "$(ps -p $$ -oppid=)" - exit } ee() { file=$(find . -type f | fzf) + [ $? -ne 0 ] && return bsdsetsid emacsclient -c "$file" kill -9 "$(ps -p $$ -oppid=)" - exit } pa() { if [ -d $HOME/.local/packs ] && cd $HOME/.local/packs || return 1 diff --git a/.local/bin/dmbin b/.local/bin/dmbin deleted file mode 100755 index 2d2405b..0000000 --- a/.local/bin/dmbin +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -e - -file=$(find "$HOME"/.local/bin -type f | dmenu -i -l 20 -m 0) -bsdsetsid emacsclient -c "$file" -kill -9 "$(ps -p $$ -oppid=)" -exit diff --git a/.local/bin/dmconf b/.local/bin/dmconf deleted file mode 100755 index 931fe3d..0000000 --- a/.local/bin/dmconf +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -e - -file=$(find "$XDG_CONFIG_HOME" -type f | dmenu -i -l 30 -m 0) -bsdsetsid emacsclient -c "$file" -kill -9 "$(ps -p $$ -oppid=)" -exit diff --git a/.local/bin/dme b/.local/bin/dme deleted file mode 100755 index dce2484..0000000 --- a/.local/bin/dme +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -e - -file=$(find . -type f | dmenu -i -l 30 -m 0) -bsdsetsid emacsclient -c "$file" -kill -9 "$(ps -p $$ -oppid=)" -exit |