6 Commits
0.2 ... 0.4

Author SHA1 Message Date
udeved
878456d92a fix Makefile 2017-07-27 16:44:41 +02:00
udeved
e1b83c3e9f add Makefile 2017-07-27 15:42:19 +02:00
udeved
e7b1cabddd add icons 2017-07-27 00:58:28 +02:00
udeved
82387419c3 rm bashrc.d; moved in bash package 2017-07-26 21:46:30 +02:00
udeved
f8eed244a2 rename bashrc files 2017-07-26 21:24:03 +02:00
udeved
8231ddcf2c add bashrc customizations 2017-07-26 21:22:20 +02:00
5 changed files with 4358 additions and 0 deletions

35
Makefile Normal file
View File

@@ -0,0 +1,35 @@
Version=0.3.2
PREFIX = /usr/local
SYSCONFDIR = /etc
ICONS = \
$(wildcard icons/*.svg) \
$(wildcard icons/*.png)
BACKGROUNDS = \
$(wildcard backgrounds/*.jpg)
install_icons:
install -dm0755 $(DESTDIR)$(PREFIX)/share/icons/artix
install -m0644 ${ICONS} $(DESTDIR)$(PREFIX)/share/icons/artix
install_backgrounds:
install -dm0755 $(DESTDIR)$(PREFIX)/share/backgrounds
install -m0755 ${BACKGROUNDS} $(DESTDIR)$(PREFIX)/share/backgrounds
uninstall_icons:
for f in ${ICONS}; do rm -f $(DESTDIR)$(PREFIX)/share/icons/artix/$$f; done
uninstall_backgrounds:
for f in ${BACKGROUNDS}; do rm -f $(DESTDIR)$(PREFIX)/share/backgrounds/$$f; done
install: install_icons install_backgrounds
uninstall: uninstall_icons uninstall_backgrounds
dist:
git archive --format=tar --prefix=desktop-presets-$(Version)/ $(Version) | gzip -9 > desktop-presets-$(Version).tar.gz
gpg --detach-sign --use-agent desktop-presets-$(Version).tar.gz
.PHONY: install uninstall dist

BIN
icons/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

2107
icons/logo.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 155 KiB

BIN
icons/logo_text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

2216
icons/logo_text.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 164 KiB