diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-03-28 16:29:30 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-03-28 16:29:30 +0400 |
| commit | 8d43c979158310959bdcb10c1566f6d3c619fe5b (patch) | |
| tree | 7b174693eb74eb794d33682f8d1d83c44f163b2c /patches/st-desktopentry-0.8.2.diff | |
| parent | 7d53184f5e46c5fa6ebd9bfe86a7a2b44669ab04 (diff) | |
Remade st build with new patches
Diffstat (limited to 'patches/st-desktopentry-0.8.2.diff')
| -rw-r--r-- | patches/st-desktopentry-0.8.2.diff | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/patches/st-desktopentry-0.8.2.diff b/patches/st-desktopentry-0.8.2.diff new file mode 100644 index 0000000..4d9375c --- /dev/null +++ b/patches/st-desktopentry-0.8.2.diff @@ -0,0 +1,44 @@ +From 0ba2850930d2ef22a1774f3dc78884c978f2d8be Mon Sep 17 00:00:00 2001 +From: aleks <aleks.stier@icloud.com> +Date: Wed, 27 May 2020 01:20:00 +0200 +Subject: [PATCH] Create a desktop-entry for st + +--- + Makefile | 3 +++ + st.desktop | 7 +++++++ + 2 files changed, 10 insertions(+) + create mode 100644 st.desktop + +diff --git a/Makefile b/Makefile +index ed19e70..29e25b9 100644 +--- a/Makefile ++++ b/Makefile +@@ -50,9 +50,12 @@ install: st + chmod 644 $(DESTDIR)$(MANPREFIX)/man1/st.1 + tic -sx st.info + @echo Please see the README file regarding the terminfo entry of st. ++ mkdir -p $(DESTDIR)$(PREFIX)/share/applications ++ cp -f st.desktop $(DESTDIR)$(PREFIX)/share/applications + + uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/st + rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1 ++ rm -f $(DESTDIR)$(PREFIX)/share/applications/st.desktop + + .PHONY: all options clean dist install uninstall +diff --git a/st.desktop b/st.desktop +new file mode 100644 +index 0000000..a1b5116 +--- /dev/null ++++ b/st.desktop +@@ -0,0 +1,7 @@ ++[Desktop Entry] ++Type=Application ++Name=st ++Comment=simple-terminal emulator for X ++Icon=utilities-terminal ++Exec=st ++Categories=System;TerminalEmulator +-- +2.26.2 + |