diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-27 21:42:03 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-27 21:52:36 +0200 |
commit | 9cd0a27e55c4762a8af3a0919ad35f2327a2bb88 (patch) | |
tree | bac822be6f4724f969e58841f78ef2e98ecf8c3d | |
parent | d9c506df8528c2db84d724048f9bc578605f9a3f (diff) |
Add desktop file and icons
Fixes: https://github.com/dillo-browser/dillo/issues/141
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Makefile.am | 11 | ||||
-rw-r--r-- | dillo.desktop | 10 | ||||
-rw-r--r-- | icons/128x128/dillo.png | bin | 0 -> 28887 bytes | |||
-rw-r--r-- | icons/48x48/dillo.png | bin | 0 -> 6135 bytes |
5 files changed, 22 insertions, 0 deletions
@@ -66,6 +66,7 @@ dillo-3.1 [not released yet] - Simplify bookmark DPI page style and improve readability. - Improve the Dillo manual available from the help button. - Improve detection of XHTML documents + - Install desktop file with Dillo icon Patches: Rodrigo Arias Mallo <rodarima@gmail.com> ----------------------------------------------------------------------------- diff --git a/Makefile.am b/Makefile.am index 036a5720..532fb945 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,3 +5,14 @@ dist_bin_SCRIPTS = dillo-install-hyphenation EXTRA_DIST = README.md Doxyfile dillorc install-dpi-local d_size.h sysconf_DATA = dillorc + +desktopdir = $(datadir)/applications +desktop_DATA = dillo.desktop + +appicon48dir = $(datadir)/icons/hicolor/48x48/apps/ +appicon48_DATA = icons/48x48/dillo.png + +appicon128dir = $(datadir)/icons/hicolor/128x128/apps/ +appicon128_DATA = icons/128x128/dillo.png + +EXTRA_DIST += $(desktop_DATA) $(appicon48_DATA) $(appicon128_DATA) diff --git a/dillo.desktop b/dillo.desktop new file mode 100644 index 00000000..24b87be4 --- /dev/null +++ b/dillo.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +GenericName=Web Browser +Name=Dillo +Comment=Fast and small graphical web browser +MimeType=text/html;text/xml;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https; +Exec=dillo %U +Icon=dillo +Terminal=false +Type=Application +Categories=Network;WebBrowser; diff --git a/icons/128x128/dillo.png b/icons/128x128/dillo.png Binary files differnew file mode 100644 index 00000000..82f6cad8 --- /dev/null +++ b/icons/128x128/dillo.png diff --git a/icons/48x48/dillo.png b/icons/48x48/dillo.png Binary files differnew file mode 100644 index 00000000..8d572038 --- /dev/null +++ b/icons/48x48/dillo.png |