Quote:
Originally Posted by kaminkatze
I used this kite script
Code:
#!/bin/sh
/mnt/us/bin/tinysh &
to start tinysh and modified
Code:
[[ $K -eq $ENT ]]&& shcmd && continue
to something like
Code:
if [[ $K -eq $ENT ]]; then
[[ $CMD == "quit" ]] && exit
shcmd && continue
fi
so I can exit tinysh.
|
I use a similar
!/mnt/us/bin/tinysh & launchpad shortcut and I simply enter the
exit command in tinysh to exit from the shell. I didn't need to modify the script. Does the kite launcher act differently?