5 lines
152 B
Bash
Executable file
5 lines
152 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
font=`fc-list | cut -d: -f2 | sort | uniq | shuf | dmenu -i -l 10`
|
|
size=`echo what size|dmenu`
|
|
st -f "$font-$size" -t "st : $font-$size" $@
|