Created
December 9, 2014 04:41
-
-
Save noahmorrison/fd779aea11a43d6a2c70 to your computer and use it in GitHub Desktop.
Open desktop files using dmenu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
bin="/usr/share/applications" | |
app=`ls --color=never -1 $bin | grep -e ".desktop\$" | rev | cut -c 9- | rev | dme | |
path="$bin/${app}.desktop" | |
grep '^Exec' $path | tail -1 | sed 's/^Exec=//' | sed 's/%.//' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment