dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

dmenu-runner.sh (398B)


      1 #!/bin/sh
      2 
      3 . "$XDG_CONFIG_HOME/regexghost/current-theme.sh"
      4 
      5 arg1=""
      6 arg2=""
      7 for arg; do
      8 	if [ "$arg" = "-ix" ]; then
      9 		arg1="-ix"
     10 	elif [ "$arg" = "-pa" ]; then
     11 		arg2="-pa"
     12 	fi
     13 done
     14 
     15 dmenu -i $arg1 $arg2 -p "$1" -l 20 -fn "$FONT_FAMILY: 14" -nb "#${BACKGROUND_BLACK}" -nf "#${FOREGROUND_WHITE}" -pb "#${BACKGROUND_BLACK}" -pf "#${FOREGROUND_WHITE}" -sb "#${BLUE}" -sf "#${BLACK}" -bb "#${GREEN}"