summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-05-13 17:26:59 -0700
committerMike Crute <mike@crute.us>2020-05-13 17:30:03 -0700
commitadc0f458cd6886095273f23fe27ca51de34189bb (patch)
tree5e148e8175475163af52da7d32b180b52622edeb /bin
parentaacf80cb7b365f441286a0a94818d1b45aba3ad1 (diff)
downloaddotfiles-adc0f458cd6886095273f23fe27ca51de34189bb.tar.bz2
dotfiles-adc0f458cd6886095273f23fe27ca51de34189bb.tar.xz
dotfiles-adc0f458cd6886095273f23fe27ca51de34189bb.zip
Remove stterm hacks for 0.8.3
Diffstat (limited to 'bin')
-rwxr-xr-xbin/st22
1 files changed, 0 insertions, 22 deletions
diff --git a/bin/st b/bin/st
deleted file mode 100755
index 7713b7f..0000000
--- a/bin/st
+++ /dev/null
@@ -1,22 +0,0 @@
1#!/bin/bash
2
3#FONT="Ubuntu Mono"
4#FONT="Anonymous Pro"
5#FONT="ProggyCleanTT"
6#FONT="Inconsolata"
7FONT="Source Code Pro"
8#FONT="Source Code Pro:style=Light"
9#FONT="Source Code Pro:style=ExtraLight"
10
11
12SIZE=11
13
14if [ "$1" == "big" ]; then
15 SIZE=25
16fi
17
18if [ -f ~/.local/bin/stterm ]; then
19 exec ~/.local/bin/stterm -f "$FONT:size=$SIZE:antialias=true:autohint=true"
20elif [ -f ~/.local/bin/st ]; then
21 exec ~/.local/bin/st -f "$FONT:size=$SIZE:antialias=true:autohint=true"
22fi