0ccb39c07c98ca823e0511ff741fe9473a68150d
[distro-setup] / filesystem / usr / local / bin / myterm
1 #!/bin/sh
2 # using bin/sh for speed since the script is very simpl.e
3
4 # these system76 systems have garbled display with konsole
5 # and some other apps like mumble. something about the intel
6 # graphics i think.
7 case $HOSTNAME in
8 sy|bo)
9 exec sakura "$@"
10 ;;
11 *)
12 exec konsole "$@"
13 ;;
14 esac