Accept a name for dl and include starter script file
[khome.git] / home / bin / khomenu
... / ...
CommitLineData
1#! /bin/sh
2
3set -e
4
5# TODO: Get theme-appropriate font and colors from some central config file.
6
7LINES=45
8FONT_NAME='Iosevka'
9FONT_SIZE=30
10FONT="$FONT_NAME:pixelsize=$FONT_SIZE:antialias=true:autohint=true"
11BG_NORM='#3a3a3a'
12FG_NORM='#dcdccc'
13BG_SELECTED="$BG_NORM"
14FG_SELECTED='#72d5a3'
15
16dmenu \
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.047948 seconds and 5 git commands to generate.