dotfiles

Dash Eclipse's dotfiles
git clone git://ezup.dev/dotfiles.git
Log | Files | Refs | README | LICENSE

commit d36e5e1ebb08e28d899873d717eef9e13ae7563b
parent 527a23f5f359daef8c2c738dd3d4f2fdaaf22b5a
Author: Dash Eclipse <dashezup@disroot.org>
Date:   Mon, 21 Mar 2022 21:33:38 +0000

fix: runx: fix typos

Diffstat:
M.local/bin/runx | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.local/bin/runx b/.local/bin/runx @@ -13,12 +13,12 @@ run_flatpak() { | column -s, -t \ | run_bemenu -l18 -p 'Flatpak' \ | awk '{print $NF}') - test ! -z "$app" && flatpak run "$APP" + test ! -z "$APP" && flatpak run "$APP" } run_appimage() { APP=$(ls -d ${HOME}/Desktop/AppImage/*.AppImage | run_bemenu -l18 -p 'AppImage') - test ! -z "$app" && exec $APP + test ! -z "$APP" && exec $APP } RUN=$(echo "Flatpak\nAppImage" | run_bemenu -l2 -p 'RUN')