dotfiles/.dmenurc

26 lines
554 B
Plaintext
Raw Normal View History

2020-09-07 14:17:34 -07:00
#
# ~/.dmenurc
#
## define the font for dmenu to be used
2020-12-03 00:58:54 -08:00
#DMENU_FN="Noto-10.5"
DMENU_FN="Fantasque Sans Mono-12.0"
2020-09-07 14:17:34 -07:00
## background colour for unselected menu-items
DMENU_NB="#222D31"
## textcolour for unselected menu-items
DMENU_NF="#F9FAF9"
## background colour for selected menu-items
DMENU_SB="#16A085"
## textcolour for selected menu-items
DMENU_SF="#F9FAF9"
## command for the terminal application to be used:
2020-12-03 00:58:54 -08:00
TERMINAL_CMD="kitty -e"
2020-09-07 14:17:34 -07:00
## export our variables
DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"