Move default numb lines into khomenu itself, decreasing it
[khome.git] / home / bin / khomenu
1 #! /bin/sh
2
3 set -e
4
5 # TODO: Get theme-appropriate font and colors from some central config file.
6
7 LINES=45
8 FONT_NAME='Iosevka'
9 FONT_SIZE=30
10 FONT="$FONT_NAME:pixelsize=$FONT_SIZE:antialias=true:autohint=true"
11 BG_NORM='#3a3a3a'
12 FG_NORM='#dcdccc'
13 BG_SELECTED="$BG_NORM"
14 FG_SELECTED='#72d5a3'
15
16 dmenu \
17 -i \
18 -fn "$FONT" \
19 -nb "$BG_NORM" \
20 -nf "$FG_NORM" \
21 -sb "$BG_SELECTED" \
22 -sf "$FG_SELECTED" \
23 -l "$LINES" \
24 $@
This page took 0.057336 seconds and 4 git commands to generate.