2017-06-09 23:09:58 +02:00
|
|
|
#!/bin/sh
|
2016-01-19 06:02:30 +01:00
|
|
|
find /usr/share/applications/ /usr/local/share/applications/ -name '*.desktop' -print0 2>/dev/null | \
|
|
|
|
xargs -0 awk '
|
2015-11-03 00:48:26 +01:00
|
|
|
BEGINFILE { entry="" }
|
|
|
|
/^\[/ { if (tolower($0) != "\[desktop entry\]") nextfile }
|
|
|
|
/^Exec=/ { entry = entry FILENAME ":Exec=qubes-desktop-run " FILENAME "\n"; next }
|
|
|
|
/^NoDisplay *= *true$/ { entry=""; nextfile }
|
|
|
|
/=/ { entry = entry FILENAME ":" $0 "\n" }
|
|
|
|
ENDFILE { print entry }
|
|
|
|
' 2> /dev/null
|