mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 16:26:10 +01:00
12 lines
332 B
Bash
Executable File
12 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
# ~/.dmenurc
|
|
DMENU_FN="Terminus-15"
|
|
DMENU_NB="#2f343f"
|
|
DMENU_NF="#1ABB9B"
|
|
DMENU_SB="#1ABB9B"
|
|
DMENU_SF="#2f343f"
|
|
TERMINAL_CMD="sterminal"
|
|
PANEL_HEIGHT="25"
|
|
DMENU_OPTIONS="-fn $DMENU_FN -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
|