dotfiles/scripts/sensible-terminal

10 lines
221 B
Plaintext
Raw Normal View History

2023-07-31 08:33:33 +05:00
#!/bin/bash
2023-07-31 08:52:48 +05:00
if [ "$1" = "-e" ]; then
shift # Remove the first argument (-e) from the argument list
command_args="$*"
/sbin/xfce4-terminal -e "$command_args"
elif [ -z "$1" ]; then
2023-07-31 08:33:33 +05:00
/sbin/xfce4-terminal
fi