dotfiles/home/.dmenurc

23 lines
603 B
Plaintext
Raw Normal View History

2021-01-11 20:37:33 +00:00
# Configuration for D-Menu (I use rofi mostly, this is usually forgotten about)
2020-03-26 20:14:21 +00:00
## define the font for dmenu to be used
2021-01-11 20:34:10 +00:00
DMENU_FN="Source Code Pro Semibold 10.5"
2020-03-26 20:14:21 +00:00
## background colour for unselected menu-items
2021-01-11 20:34:10 +00:00
DMENU_NB="#6b7089"
2020-03-26 20:14:21 +00:00
## textcolour for unselected menu-items
2021-01-11 20:34:10 +00:00
DMENU_NF="#c6c8d1"
2020-03-26 20:14:21 +00:00
## background colour for selected menu-items
2021-01-11 20:34:10 +00:00
DMENU_SB="#89b8c2"
2020-03-26 20:14:21 +00:00
## textcolour for selected menu-items
2021-01-11 20:34:10 +00:00
DMENU_SF="#161821"
2020-03-26 20:14:21 +00:00
## 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"