Skip to content

Commit

Permalink
dmenu: Update colors and add "-l" option to specify number of lines
Browse files Browse the repository at this point in the history
  • Loading branch information
sglavoie committed Jun 23, 2021
1 parent 9e5c226 commit 73e62f9
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .dmenurc
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@
#

## define the font for dmenu to be used
DMENU_FN="NotoSans-10.5"
DMENU_FN="JetBrainsMono-13"

## background colour for unselected menu-items
DMENU_NB="#161925"
DMENU_NB="#000000"

## textcolour for unselected menu-items
DMENU_NF="#fdfffc"
## text colour for unselected menu-items
DMENU_NF="#C0C0C0"

## background colour for selected menu-items
DMENU_SB="#235789"

## textcolour for selected menu-items
DMENU_SF="#fdfffc"
## text colour for selected menu-items
DMENU_SF="#ffffff"

## command for the terminal application to be used:
TERMINAL_CMD="st -e"
DMENU_LINES="40"

## export our variables
DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
DMENU_OPTIONS="-l $DMENU_LINES -fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"

0 comments on commit 73e62f9

Please sign in to comment.