scripts

Scripts for general automations
git clone git://git.laack.co/scripts.git
Log | Files | Refs

dmenu.sh (205B)


      1 #!/bin/bash
      2 
      3 # this is aliased as run
      4 # from the cli to run fzf.
      5 
      6 if [ $# -eq 0 ]
      7   then
      8 	  selection=$(compgen -c | fzf)
      9 	  nohup $selection &>/dev/null &
     10   else
     11 	prompt="run:"
     12 	dmenu_run -p "$prompt"
     13 fi