Change terminal application to maintain floating windows

This commit is contained in:
John Mertz 2022-04-19 00:23:29 -04:00 committed by John Mertz
parent b8e84128e0
commit 32e58ff147
Signed by: jpm
GPG Key ID: E9C5EA2D867501AB
2 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@
if [ "$(pgrep -c htop)" -gt 0 ]; then
pkill htop
else
/usr/bin/xterm -e htop
/usr/bin/uxterm -e htop
fi

View File

@ -5,5 +5,5 @@ RUNNING=$(pgrep nmtui)
if [ "$RUNNING" ]; then
kill $RUNNING 2&>1 /dev/null
else
/usr/bin/xterm -e '/usr/bin/nmtui'
/usr/bin/uxterm -e '/usr/bin/nmtui'
fi