Skip to content

Instantly share code, notes, and snippets.

@sehraramiz
Created November 27, 2020 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sehraramiz/f98d9e520a43883ed764eefd36ba06c4 to your computer and use it in GitHub Desktop.
Save sehraramiz/f98d9e520a43883ed764eefd36ba06c4 to your computer and use it in GitHub Desktop.
a clone of dmenu_run
#!/bin/bash
declare programs=$(dmenu_path | head -30)
choice=$(echo -e "${programs[@]}" | dmenu -p 'Which program to run? ' -fn 'NotoMonoRegular:bold:pixelsize=30' )
echo $choice
$choice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment