26 lines
588 B
Plaintext
Executable File
26 lines
588 B
Plaintext
Executable File
#
|
|
# ~/.dmenurc
|
|
#
|
|
|
|
## define the font for dmenu to be used
|
|
# DMENU_FN="xft:terminus:pixelsize=14"
|
|
DMENU_FN="SourceSerifPro:size=14:weight=SemiBold"
|
|
|
|
## background colour for unselected menu-items
|
|
DMENU_NB="#0a0303"
|
|
|
|
## textcolour for unselected menu-items
|
|
DMENU_NF="#a03f02"
|
|
|
|
## background colour for selected menu-items
|
|
DMENU_SB="#0a0303"
|
|
|
|
## textcolour for selected menu-items
|
|
DMENU_SF="#ea7607"
|
|
|
|
## 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"
|