aboutsummaryrefslogtreecommitdiff
path: root/src/usr/share/applications
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-29 21:05:42 -0400
committerB Stack <bgstack15@gmail.com>2020-09-29 21:05:42 -0400
commit5a757b0f96c60e3d894e8c5a9fd335f91fffb7f9 (patch)
treed57d6e4e1e63641bfc41d6659516d82c2e24d568 /src/usr/share/applications
parentWIP: fixing initialize for packaging process (diff)
downloadmyautomount-5a757b0f96c60e3d894e8c5a9fd335f91fffb7f9.tar.gz
myautomount-5a757b0f96c60e3d894e8c5a9fd335f91fffb7f9.tar.bz2
myautomount-5a757b0f96c60e3d894e8c5a9fd335f91fffb7f9.zip
WIP: improve rpm packaging, fix desktop files
Diffstat (limited to 'src/usr/share/applications')
-rw-r--r--src/usr/share/applications/myautomount-trayicon.desktop10
-rw-r--r--src/usr/share/applications/myautomountd.desktop10
2 files changed, 20 insertions, 0 deletions
diff --git a/src/usr/share/applications/myautomount-trayicon.desktop b/src/usr/share/applications/myautomount-trayicon.desktop
new file mode 100644
index 0000000..061454d
--- /dev/null
+++ b/src/usr/share/applications/myautomount-trayicon.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Comment=Tray icon for managing removable media
+Exec=/usr/bin/myautomount-trayicon
+GenericName=Automount helper tray icon
+Icon=media-removable
+Keywords=automount;
+Name=MyAutoMount tray icon
+NoDisplay=true
+Terminal=false
+Type=Application
diff --git a/src/usr/share/applications/myautomountd.desktop b/src/usr/share/applications/myautomountd.desktop
new file mode 100644
index 0000000..57a147a
--- /dev/null
+++ b/src/usr/share/applications/myautomountd.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Comment=Monitor udevadm for removable media
+Exec=/usr/bin/myautomountd
+GenericName=Automount helper daemon
+Icon=media-removable
+Keywords=automount;
+Name=MyAutoMount daemon
+NoDisplay=true
+Terminal=false
+Type=Application
bgstack15