home
/
code
/
khome.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Remove .txt extension from TODO
[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
FONT_NAME
=
'Iosevka'
8
FONT_SIZE
=
20
9
FONT
=
"
$FONT_NAME
:pixelsize=
$FONT_SIZE
:antialias=true:autohint=true"
10
BG_NORM
=
'#3a3a3a'
11
FG_NORM
=
'#dcdccc'
12
BG_SELECTED
=
"
$BG_NORM
"
13
FG_SELECTED
=
'#72d5a3'
14
15
dmenu \
16
-i
\
17
-fn
"
$FONT
"
\
18
-nb
"
$BG_NORM
"
\
19
-nf
"
$FG_NORM
"
\
20
-sb
"
$BG_SELECTED
"
\
21
-sf
"
$FG_SELECTED
"
\
22
$@
This page took
0.066222 seconds
and
4
git commands to generate.