Anthony Debucquoy
9eede5ef5f
This is a first dotfiles config. I think I have a lot more to add tho...
14 lines
387 B
Bash
Executable File
14 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
# ~/.dmenurc
|
|
#DMENU_FN="Terminus-15"
|
|
DMENU_FN="consolas-14"
|
|
#DMENU_FN="TerminessTTF Nerd Font-15" -fn $DMENU_FN
|
|
DMENU_NB="#2f343f"
|
|
DMENU_NF="#1ABB9B"
|
|
DMENU_SB="#1ABB9B"
|
|
DMENU_SF="#2f343f"
|
|
TERMINAL_CMD="st"
|
|
PANEL_HEIGHT="25"
|
|
DMENU_OPTIONS="-nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
|
|
export DMENU_FN DMENU_NB DMENU_NF DMENU_SF DMENU_SB DMENU_OPTIONS PANEL_HEIGHT
|