-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 424cbc2
Showing
159 changed files
with
65,227 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
DEFAULT_BACKGROUND=desktop-background | ||
|
||
INSTALL=install -m 0644 | ||
BACKGROUNDS=$(wildcard backgrounds/*.png backgrounds/*.jpg backgrounds/*.svg backgrounds/*.tga backgrounds/*.xml) | ||
EMBLEMS=$(wildcard emblems/*png emblems/*icon) | ||
SPLASH=$(wildcard splash/*.png splash/*.svg) | ||
PIXMAPS=$(wildcard pixmaps/*.png) | ||
DESKTOPFILES=$(wildcard *.desktop) | ||
|
||
all: | ||
|
||
clean: | ||
|
||
install: | ||
# background files | ||
mkdir -p $(DESTDIR)/usr/share/images/desktop-base | ||
$(INSTALL) $(BACKGROUNDS) $(DESTDIR)/usr/share/images/desktop-base | ||
cd $(DESTDIR)/usr/share/images/desktop-base && ln -s $(DEFAULT_BACKGROUND) default | ||
# splash files | ||
$(INSTALL) $(SPLASH) $(DESTDIR)/usr/share/images/desktop-base | ||
# emblems | ||
mkdir -p $(DESTDIR)/usr/share/icons/hicolor/36x36/emblems | ||
$(INSTALL) $(EMBLEMS) $(DESTDIR)/usr/share/icons/hicolor/36x36/emblems/ | ||
# desktop files | ||
mkdir -p $(DESTDIR)/usr/share/desktop-base | ||
$(INSTALL) $(DESKTOPFILES) $(DESTDIR)/usr/share/desktop-base/ | ||
# pixmaps files | ||
mkdir -p $(DESTDIR)/usr/share/pixmaps | ||
$(INSTALL) $(PIXMAPS) $(DESTDIR)/usr/share/pixmaps/ | ||
|
||
# KDE Config | ||
mkdir -p $(DESTDIR)/usr/share/desktop-base/profiles/kde-profile/share/config | ||
$(INSTALL) $(wildcard profiles/kde-profile/share/config/*) $(DESTDIR)/usr/share/desktop-base/profiles/kde-profile/share/config | ||
mkdir -p $(DESTDIR)/usr/share/kde4/config | ||
$(INSTALL) profiles/kde-profile/kdeglobals $(DESTDIR)/usr/share/kde4/config | ||
mkdir -p $(DESTDIR)/usr/share/kde4/apps/plasma-desktop/init/ | ||
$(INSTALL) kde-wallpaper/10-desktop-base.js $(DESTDIR)/usr/share/kde4/apps/plasma-desktop/init/ | ||
|
||
# KDE Wallpaper | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy | ||
$(INSTALL) kde-wallpaper/joy/metadata.desktop $(DESTDIR)/usr/share/wallpapers/joy/ | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy/contents | ||
$(INSTALL) kde-wallpaper/joy/contents/screenshot.png $(DESTDIR)/usr/share/wallpapers/joy/contents/ | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy/contents/images | ||
$(INSTALL) $(wildcard kde-wallpaper/joy/contents/images/*) $(DESTDIR)/usr/share/wallpapers/joy/contents/images/ | ||
# Inksplat Version | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy_inksplat | ||
$(INSTALL) kde-wallpaper/joy_inksplat/metadata.desktop $(DESTDIR)/usr/share/wallpapers/joy_inksplat/ | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy_inksplat/contents | ||
$(INSTALL) kde-wallpaper/joy_inksplat/contents/screenshot.png $(DESTDIR)/usr/share/wallpapers/joy_inksplat/contents/ | ||
mkdir -p $(DESTDIR)/usr/share/wallpapers/joy_inksplat/contents/images | ||
$(INSTALL) $(wildcard kde-wallpaper/joy_inksplat/contents/images/*) $(DESTDIR)/usr/share/wallpapers/joy_inksplat/contents/images/ | ||
|
||
|
||
|
||
# KDM theme | ||
mkdir -p $(DESTDIR)/etc/default/kdm.d | ||
$(INSTALL) kdm-theme/kdm.d/10_desktop-base $(DESTDIR)/etc/default/kdm.d | ||
mkdir -p $(DESTDIR)/usr/share/kde4/apps/kdm/themes/joy | ||
$(INSTALL) $(wildcard kdm-theme/joy/*) $(DESTDIR)/usr/share/kde4/apps/kdm/themes/joy | ||
|
||
# KSPLASH theme | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy | ||
$(INSTALL) ksplash-theme/joy/Preview.png $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy | ||
$(INSTALL) ksplash-theme/joy/Theme.rc $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1024x768 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1024x768/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1024x768 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1280x800 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1280x800/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1280x800 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1280x1024 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1280x1024/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1280x1024 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1366x768 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1366x768/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1366x768 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1600x1200 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1600x1200/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1600x1200 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1920x1080 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1920x1080/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1920x1080 | ||
install -d $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1920x1200 | ||
$(INSTALL) $(wildcard ksplash-theme/joy/1920x1200/*) $(DESTDIR)/usr/share/kde4/apps/ksplash/Themes/joy/1920x1200 | ||
|
||
|
||
# Xfce 4.6 | ||
mkdir -p $(DESTDIR)/usr/share/desktop-base/profiles/xdg-config/xfce4/xfconf/xfce-perchannel-xml | ||
$(INSTALL) $(wildcard profiles/xdg-config/xfce4/xfconf/xfce-perchannel-xml/*) $(DESTDIR)/usr/share/desktop-base/profiles/xdg-config/xfce4/xfconf/xfce-perchannel-xml | ||
# GNOME background descriptor | ||
mkdir -p $(DESTDIR)/usr/share/gnome-background-properties | ||
$(INSTALL) gnome-backgrounds.xml $(DESTDIR)/usr/share/gnome-background-properties/debian.xml | ||
# GDM 3 theme | ||
mkdir -p $(DESTDIR)/usr/share/gdm/dconf | ||
$(INSTALL) gdm3/background.svg $(DESTDIR)/usr/share/images/desktop-base/login-background.svg | ||
$(INSTALL) gdm3/10-desktop-base-settings $(DESTDIR)/usr/share/gdm/dconf/ | ||
|
||
# grub | ||
$(INSTALL) grub/joy-grub.png $(DESTDIR)/usr/share/images/desktop-base/ | ||
$(INSTALL) grub/spacefun-grub.png $(DESTDIR)/usr/share/images/desktop-base/ | ||
$(INSTALL) grub/spacefun-grub-widescreen.png $(DESTDIR)/usr/share/images/desktop-base/ | ||
$(INSTALL) grub/grub_background.sh $(DESTDIR)/usr/share/desktop-base/ | ||
|
||
# plymouth | ||
install -d $(DESTDIR)/usr/share/plymouth/themes/spacefun | ||
$(INSTALL) $(wildcard plymouth/spacefun/*) $(DESTDIR)/usr/share/plymouth/themes/spacefun | ||
|
||
install -d $(DESTDIR)/usr/share/plymouth/themes/joy | ||
$(INSTALL) $(wildcard plymouth/joy/*) $(DESTDIR)/usr/share/plymouth/themes/joy | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.