diff options
| author | Weiseguy <info@weiseguy.com> | 2023-09-22 06:50:35 -0500 | 
|---|---|---|
| committer | Leonardo Hernández <leohdz172@proton.me> | 2023-09-22 19:49:18 -0600 | 
| commit | 773bd04764f8407f90bf5bd10d62cd1712594892 (patch) | |
| tree | 027d22cdea4510b6d736a9aa93d54e27917b0657 /Makefile | |
| parent | 755fcae2afbed51f38c167bdc56a5437cda8137a (diff) | |
Add desktop entry file
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 | 
1 files changed, 4 insertions, 1 deletions
| @@ -52,8 +52,11 @@ install: dwl  	mkdir -p $(DESTDIR)$(MANDIR)/man1  	cp -f dwl.1 $(DESTDIR)$(MANDIR)/man1  	chmod 644 $(DESTDIR)$(MANDIR)/man1/dwl.1 +	mkdir -p $(DESTDIR)$(PREFIX)/share/wayland-sessions +	cp -f dwl.desktop $(DESTDIR)$(PREFIX)/share/wayland-sessions/dwl.desktop +	chmod 644 $(DESTDIR)$(PREFIX)/share/wayland-sessions/dwl.desktop  uninstall: -	rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1 +	rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1 $(DESTDIR)$(PREFIX)/share/wayland-sessions/dwl.desktop  .SUFFIXES: .c .o  .c.o: | 
