dmenu/dmenurc

26 lines
591 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"
2020-03-26 13:09:43 +00:00
DMENU_FN="SourceSerifPro:size=14:weight=SemiBold"
2020-02-25 21:01:31 +00:00
## background colour for unselected menu-items
2020-04-23 20:38:51 +00:00
DMENU_NB="#272727"
2020-02-25 21:01:31 +00:00
## textcolour for unselected menu-items
2020-04-23 20:38:51 +00:00
DMENU_NF="#777777"
2020-02-25 21:01:31 +00:00
## background colour for selected menu-items
2020-04-23 20:38:51 +00:00
DMENU_SB="#272727"
2020-02-25 21:01:31 +00:00
## textcolour for selected menu-items
2020-04-23 20:38:51 +00:00
DMENU_SF="#ffffff"
2020-02-25 21:01:31 +00:00
## command for the terminal application to be used:
TERMINAL_CMD="terminal -e"
## export our variables
2020-04-01 16:14:16 +00:00
DMENU_OPTIONS="-i -fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"