diff options
author | Jani Välimaa <wally@mageia.org> | 2014-12-26 14:02:45 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2014-12-26 14:02:45 +0200 |
commit | c74573439b353a26305688c33391513bbcfb03dd (patch) | |
tree | b84d07174cfc44b3f50dcdea5215744b98e8af73 /launchers | |
parent | 720ea4a23a3c91f5cda701435c06d489028ef7b9 (diff) | |
download | config-c74573439b353a26305688c33391513bbcfb03dd.tar config-c74573439b353a26305688c33391513bbcfb03dd.tar.gz config-c74573439b353a26305688c33391513bbcfb03dd.tar.bz2 config-c74573439b353a26305688c33391513bbcfb03dd.tar.xz config-c74573439b353a26305688c33391513bbcfb03dd.zip |
Move app launchers to a separate dir
Diffstat (limited to 'launchers')
-rw-r--r-- | launchers/Makefile.am | 35 | ||||
-rw-r--r-- | launchers/file-manager.desktop.in | 8 | ||||
-rw-r--r-- | launchers/mcc.desktop.in | 8 | ||||
-rw-r--r-- | launchers/terminal-emulator.desktop.in | 8 | ||||
-rw-r--r-- | launchers/text-editor.desktop.in | 9 | ||||
-rw-r--r-- | launchers/web-browser.desktop.in | 8 |
6 files changed, 76 insertions, 0 deletions
diff --git a/launchers/Makefile.am b/launchers/Makefile.am new file mode 100644 index 0000000..1df7059 --- /dev/null +++ b/launchers/Makefile.am @@ -0,0 +1,35 @@ +terminaldir = $(sysconfdir)/xdg/xfce4/panel/launcher-4 +terminal_in_files = terminal-emulator.desktop.in +terminal_DATA = $(terminal_in_files:.desktop.in=.desktop) + +textdir = $(sysconfdir)/xdg/xfce4/panel/launcher-5 +text_in_files = text-editor.desktop.in +text_DATA = $(text_in_files:.desktop.in=.desktop) + +filedir = $(sysconfdir)/xdg/xfce4/panel/launcher-6 +file_in_files = file-manager.desktop.in +file_DATA = $(file_in_files:.desktop.in=.desktop) + +webdir = $(sysconfdir)/xdg/xfce4/panel/launcher-8 +web_in_files = web-browser.desktop.in +web_DATA = $(web_in_files:.desktop.in=.desktop) + +mccdir = $(sysconfdir)/xdg/xfce4/panel/launcher-9 +mcc_in_files = mcc.desktop.in +mcc_DATA = $(mcc_in_files:.desktop.in=.desktop) + +@INTLTOOL_DESKTOP_RULE@ + +CLEANFILES = \ + $(terminal_DATA) \ + $(text_DATA) \ + $(file_DATA) \ + $(web_DATA) \ + $(mcc_DATA) + +EXTRA_DIST = \ + $(terminal_in_files) \ + $(text_in_files) \ + $(file_in_files) \ + $(web_in_files) \ + $(mcc_in_files) diff --git a/launchers/file-manager.desktop.in b/launchers/file-manager.desktop.in new file mode 100644 index 0000000..e6c926b --- /dev/null +++ b/launchers/file-manager.desktop.in @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Exec=exo-open --launch FileManager %u +Icon=system-file-manager +StartupNotify=true +Terminal=false +_Name=File Manager +_Comment=Browse the file system diff --git a/launchers/mcc.desktop.in b/launchers/mcc.desktop.in new file mode 100644 index 0000000..8c4b06e --- /dev/null +++ b/launchers/mcc.desktop.in @@ -0,0 +1,8 @@ +[Desktop Entry] +_Name=Configure Your Computer +_Comment=Configure Your Computer +Exec=drakconf +Icon=drakconf +Terminal=false +Type=Application +StartupNotify=false diff --git a/launchers/terminal-emulator.desktop.in b/launchers/terminal-emulator.desktop.in new file mode 100644 index 0000000..7955529 --- /dev/null +++ b/launchers/terminal-emulator.desktop.in @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=utilities-terminal +StartupNotify=false +Terminal=false +_Name=Terminal Emulator +_Comment=Use the command line diff --git a/launchers/text-editor.desktop.in b/launchers/text-editor.desktop.in new file mode 100644 index 0000000..92e8282 --- /dev/null +++ b/launchers/text-editor.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +_Name=Mousepad +_Comment=Simple Text Editor +_GenericName=Text Editor +Exec=mousepad %F +Icon=accessories-text-editor +Terminal=false +StartupNotify=true +Type=Application diff --git a/launchers/web-browser.desktop.in b/launchers/web-browser.desktop.in new file mode 100644 index 0000000..3c1d300 --- /dev/null +++ b/launchers/web-browser.desktop.in @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Exec=exo-open --launch WebBrowser %u +Icon=web-browser +StartupNotify=false +Terminal=false +_Name=Web Browser +_Comment=Browse the web |