Add other dotfiles

This commit is contained in:
David Todd
2020-03-26 15:14:21 -05:00
parent b306a7f838
commit f061f8400a
4 changed files with 95 additions and 0 deletions

24
home/dmenurc Executable file
View File

@@ -0,0 +1,24 @@
#
# ~/.dmenurc
#
## define the font for dmenu to be used
DMENU_FN="Noto-10.5"
## background colour for unselected menu-items
DMENU_NB="#222D31"
## textcolour for unselected menu-items
DMENU_NF="#F9FAF9"
## background colour for selected menu-items
DMENU_SB="#16A085"
## textcolour for selected menu-items
DMENU_SF="#F9FAF9"
## 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"