init
This commit is contained in:
.faceLICENSEMakefileREADME.mdcheck-themecheck-theme.desktopcheck-warning.pngextractgst.shgdm-theme-backup.hookgdm-theme-backup.scriptgdm-theme-maia-install.hookgdm-theme-maia-install.scriptgdm-theme-maia-remove.hookgdm-theme-maia-remove.scriptrecolor.sh
theme
branding.pngcalendar-today.svgcheckbox-focused.svgcheckbox-off-focused.svgcheckbox-off.svgcheckbox.svgdash-placeholder.svggnome-shell-high-contrast.cssgnome-shell-theme.gresourcegnome-shell-theme.gresource.xmlgnome-shell.css
icons
key-enter.svgkey-hide.svgkey-layout.svgkey-shift-latched-uppercase.svgkey-shift-uppercase.svgkey-shift.svgmanjaro.pngno-events.svgno-notifications.svgnoise-texture.pngpad-osd.cssprocess-working.svgtoggle-off-hc.svgtoggle-off-intl.svgtoggle-on-hc.svgtoggle-on-intl.svg
24
Makefile
Normal file
24
Makefile
Normal file
@ -0,0 +1,24 @@
|
||||
SHELL = /bin/bash
|
||||
PREFIX= /usr
|
||||
THEME_DIR= $(PREFIX)/share/themes/manjaro-gdm-theme
|
||||
ICON_DIR_USER= /etc/skel
|
||||
THEME= $(wildcard theme/*.svg) \
|
||||
$(wildcard theme/*.png) \
|
||||
$(wildcard theme/*.css) \
|
||||
$(wildcard theme/*.gresource) \
|
||||
$(wildcard theme/*.xml)
|
||||
THEME_ICON= $(wildcard theme/icons/*)
|
||||
ICON_USER= $(wildcard .face)
|
||||
|
||||
install:
|
||||
install -dm755 $(DESTDIR)$(ICON_DIR_USER)
|
||||
install -m644 $(ICON_USER) $(DESTDIR)$(ICON_DIR_USER)
|
||||
install -dm755 $(DESTDIR)$(THEME_DIR)
|
||||
install -m644 $(THEME) $(DESTDIR)$(THEME_DIR)
|
||||
install -m644 $(THEME_ICON) $(DESTDIR)$(THEME_DIR)/icons
|
||||
|
||||
uninstall:
|
||||
rm -Rf $(DESTDIR)$(THEME_DIR)
|
||||
rm -f $(DESTDIR)$(ICON_DIR_USER)/$(ICON_USER)
|
||||
|
||||
.PHONY: install uninstall
|
Reference in New Issue
Block a user