Xfce: add custom kali panel layouts for xfce4-panel-profiles

This commit is contained in:
Daniel Ruiz de Alegría
2023-01-09 15:46:07 +01:00
parent 3fd9803bd6
commit b84e36fd1c
15 changed files with 193 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
dir = usr/share/xfce4-panel-profiles/layouts
TAROPTS := --sort=name --format ustar
.PHONY: build clean install
build:
for layout in */; do \
(cd "$${layout}" \
&& tar $(TAROPTS) -cvjhf "../$$(basename "$${layout}").tar.bz2" *;) \
done
clean:
rm -f *.tar.bz2
install:
install -d $(DESTDIR)/$(dir)
$(INSTALL_DATA) $(wildcard *.tar.bz2) $(DESTDIR)/$(dir)