#!/bin/sh # using bin/sh for speed since the script is very simpl.e # these system76 systems have garbled display with konsole # and some other apps like mumble. something about the intel # graphics i think. case $HOSTNAME in sy|bo) exec sakura "$@" ;; *) exec konsole "$@" ;; esac