dotfiles/bin/st

12 lines
190 B
Text
Raw Normal View History

#!/bin/bash
set -ex
case `hostname` in
dice-dlundin2)
2017-02-21 13:37:32 +01:00
exec st.dark -f "Roboto Mono:pixelsize=14" $@
;;
dredd)
2017-02-20 08:20:48 +01:00
exec st.dark -f "Roboto Mono-15" $@
;;
esac
2017-03-01 19:44:28 +01:00
exec st.dark $@