dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

dmenu_run (121B)


      1 #!/bin/sh
      2 set -eu
      3 cmd="$(dmenu_path | dmenu "$@")"
      4 out="$(eval "$cmd" 2>&1)"
      5 [ "$out" != "" ] && notify "\$ $cmd" "$out"