dotfiles/bin/st

12 lines
194 B
Text
Raw Normal View History

#!/bin/bash
set -ex
case `hostname` in
dice-dlundin2)
2016-10-21 12:39:05 +02:00
exec st.x86_64 -f "Roboto Mono:pixelsize=14" $@
;;
dredd)
2017-02-20 08:20:48 +01:00
exec st.dark -f "Roboto Mono-15" $@
;;
esac
exec st.x86_64 $@