27 lines
642 B
Plaintext
27 lines
642 B
Plaintext
|
#
|
||
|
# ~/.dmenurc
|
||
|
#
|
||
|
|
||
|
## define the font for dmenu to be used
|
||
|
# DMENU_FN="xft:terminus:pixelsize=14"
|
||
|
DMENU_FN="xos4Terminus:size=14:weight=bold"
|
||
|
|
||
|
## background colour for unselected menu-items
|
||
|
DMENU_NB="#000000"
|
||
|
|
||
|
## textcolour for unselected menu-items
|
||
|
# DMENU_NF="#43ab43" # in case below is too dim in daylight
|
||
|
DMENU_NF="#237923"
|
||
|
|
||
|
## background colour for selected menu-items
|
||
|
DMENU_SB="#000000"
|
||
|
|
||
|
## textcolour for selected menu-items
|
||
|
DMENU_SF="#55ff55"
|
||
|
|
||
|
## command for the terminal application to be used:
|
||
|
TERMINAL_CMD="terminal -e"
|
||
|
|
||
|
## export our variables
|
||
|
DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
|