dmenu/dmenurc

26 lines
582 B
Plaintext
Raw Normal View History

2020-02-25 21:01:31 +00:00
#
# ~/.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
2020-03-25 21:35:30 +00:00
DMENU_NB="#0a0303"
2020-02-25 21:01:31 +00:00
## textcolour for unselected menu-items
2020-03-25 21:35:30 +00:00
DMENU_NF="#d6651a"
2020-02-25 21:01:31 +00:00
## background colour for selected menu-items
2020-03-25 21:35:30 +00:00
DMENU_SB="#0a0303"
2020-02-25 21:01:31 +00:00
## textcolour for selected menu-items
2020-03-25 21:35:30 +00:00
DMENU_SF="#f3950a"
2020-02-25 21:01:31 +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"