-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Vanilla-OS/dev
Merge de
- Loading branch information
Showing
197 changed files
with
908 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,40 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
container: | ||
image: ghcr.io/vanilla-os/pico:main | ||
volumes: | ||
- /proc:/proc | ||
- /:/run/host | ||
options: --privileged -it | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: De-bloat stock image | ||
run: | | ||
rm -r /run/host/usr/share/dotnet | ||
rm -r /run/host${{ runner.tool_cache }} | ||
- name: Install needed packages | ||
run: apt update && apt install dpkg-dev build-essential debhelper inkscape librsvg2-bin optipng -y | ||
|
||
- name: Build debian package | ||
run: | | ||
dpkg-buildpackage --no-sign | ||
mv ../*.deb ../desktop-base.deb | ||
- uses: softprops/action-gh-release@v1 | ||
with: | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
tag_name: "continuous" | ||
prerelease: true | ||
name: "Continuous Build" | ||
files: | | ||
/__w/desktop-base/desktop-base.deb |
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,30 @@ | ||
PIXMAPS=$(wildcard pixmaps/*.png) | ||
|
||
.PHONY: all clean install install-local | ||
all: build-emblems build-logos | ||
clean: clean-emblems clean-logos | ||
|
||
.PHONY: build-emblems clean-emblems install-emblems | ||
build-emblems clean-emblems install-emblems: | ||
@target=`echo $@ | sed s/-emblems//`; \ | ||
$(MAKE) $$target -C emblems-vanilla || exit 1; | ||
|
||
.PHONY: build-logos clean-logos install-logos | ||
build-logos clean-logos install-logos: | ||
@target=`echo $@ | sed s/-logos//`; \ | ||
$(MAKE) $$target -C vanilla-logos || exit 1; | ||
|
||
|
||
install: install-emblems install-logos install-local | ||
|
||
install-local: | ||
# vanilla logo in circle as default user face icon | ||
install -d $(DESTDIR)/etc/skel | ||
$(INSTALL_DATA) defaults/common/etc/skel/.face $(DESTDIR)/etc/skel | ||
cd $(DESTDIR)/etc/skel && ln -s .face .face.icon | ||
|
||
# pixmaps files | ||
mkdir -p $(DESTDIR)/usr/share/pixmaps | ||
$(INSTALL_DATA) $(PIXMAPS) $(DESTDIR)/usr/share/pixmaps/ | ||
|
||
include Makefile.inc |
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,7 @@ | ||
INSTALL=install | ||
INSTALL_PROGRAM=$(INSTALL) | ||
# Don't use $(INSTALL) for data as debhelper >= 11 injects | ||
# --strip-program=true which is specific to non-data files | ||
#INSTALL_DATA=$(INSTALL) -m 644 | ||
INSTALL_DATA=install -m 644 | ||
|
Empty file.
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,11 @@ | ||
desktop-base (100.1) unstable; urgency=medium | ||
|
||
* Create /usr/share/images/vendor-logos is not existent | ||
|
||
-- Mateus Melchiades <matbme@duck.com> Thu, 09 Aug 2023 11:52:00 -0300 | ||
|
||
desktop-base (100.0) unstable; urgency=medium | ||
|
||
* First version of the Vanilla OS desktop-base package | ||
|
||
-- Mirko Brombin <send@mirko.pm> Thu, 09 Aug 2023 14:32:00 +0300 |
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 @@ | ||
13 |
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,19 @@ | ||
Source: desktop-base | ||
Section: x11 | ||
Priority: optional | ||
Maintainer: Vanilla OS Contributors <info@vanillaos.org> | ||
Build-Depends: debhelper (>= 13), | ||
inkscape, | ||
librsvg2-bin, | ||
optipng | ||
|
||
Rules-Requires-Root: no | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/Vanilla-OS/desktop-base | ||
Vcs-Browser: https://github.com/Vanilla-OS/desktop-base | ||
Vcs-Git: https://github.com/Vanilla-OS/desktop-base.git | ||
Package: desktop-base | ||
Architecture: all | ||
Depends: librsvg2-common | ||
Suggests: gnome | ||
Description: common files for the Vanilla OS GNOME |
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 @@ | ||
License: GPL-3+ or CC-BY-SA-3.0 |
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 @@ | ||
desktop-base |
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,14 @@ | ||
# The following folders are created in order to point alternatives to them. | ||
# They filled by update-alternatives in postinst during installation. | ||
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/128x128/emblems/] | ||
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/256x256/emblems/] | ||
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/64x64/emblems/] | ||
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/scalable/emblems/] | ||
|
||
# We do want the debian in circle logo to be copied for newly created users | ||
desktop-base: package-contains-file-in-etc-skel [etc/skel/.face.icon] | ||
desktop-base: package-contains-file-in-etc-skel [etc/skel/.face] | ||
|
||
# to make lintian/ftp-master happy :-/ | ||
desktop-base: package-contains-file-in-etc-skel etc/skel/.face.icon | ||
desktop-base: package-contains-file-in-etc-skel etc/skel/.face |
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,7 @@ | ||
# Automatically added by dh_icons/13.6ubuntu1 | ||
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then | ||
if command -v update-icon-caches >/dev/null; then | ||
update-icon-caches /usr/share/icons/desktop-base | ||
fi | ||
fi | ||
# End automatically added section |
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,5 @@ | ||
# Automatically added by dh_icons/13.6ubuntu1 | ||
if command -v update-icon-caches >/dev/null; then | ||
update-icon-caches /usr/share/icons/desktop-base | ||
fi | ||
# End automatically added section |
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,2 @@ | ||
misc:Depends= | ||
misc:Pre-Depends= |
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 @@ | ||
/etc/skel/.face |
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,11 @@ | ||
Package: desktop-base | ||
Version: 100.0 | ||
Architecture: all | ||
Maintainer: Vanilla OS Contributors <info@vanillaos.org> | ||
Installed-Size: 307 | ||
Depends: librsvg2-common | ||
Suggests: gnome | ||
Section: x11 | ||
Priority: optional | ||
Homepage: https://github.com/Vanilla-OS/desktop-base | ||
Description: common files for the Vanilla OS GNOME |
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,82 @@ | ||
88a8ad82cbe33648d69ea45a12a50469 usr/share/desktop-base/vanilla-logos/logo-128.png | ||
2925dbf81c16af213eb639eb9dcd2eb3 usr/share/desktop-base/vanilla-logos/logo-256.png | ||
de77adeae189b86a10e4cc908c211bfb usr/share/desktop-base/vanilla-logos/logo-64.png | ||
5aae40413f0ae279d5cca9b5f235b9f7 usr/share/desktop-base/vanilla-logos/logo-text-128.png | ||
3f665a81a98faf16c73ce2f9654e45c2 usr/share/desktop-base/vanilla-logos/logo-text-256.png | ||
28f8bdc77c8b3d18c42e84f7f141c6ae usr/share/desktop-base/vanilla-logos/logo-text-64.png | ||
77b975e6dde1186d6f48eff0bd79615b usr/share/desktop-base/vanilla-logos/logo-text-version-128.png | ||
4a1edb1d62898bb63b14ddde7e73458a usr/share/desktop-base/vanilla-logos/logo-text-version-256.png | ||
78d9294770ee1c60ff04b5fc56925904 usr/share/desktop-base/vanilla-logos/logo-text-version-64.png | ||
57ea43676d8f444b5c51cbce7f47b3d8 usr/share/desktop-base/vanilla-logos/logo-text-version.svg | ||
0571a07a48a693935ad7ff8690e30511 usr/share/desktop-base/vanilla-logos/logo-text.svg | ||
0cd8924accc83eeea702103f63cae7b7 usr/share/desktop-base/vanilla-logos/logo.svg | ||
f72621af1fb070f382a469d18b0ab318 usr/share/doc/desktop-base/changelog.gz | ||
e2692a9335ad165e8430b6cf8ea8baa4 usr/share/doc/desktop-base/copyright | ||
e3955c5c204cba6ca811495a62640cff usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla-symbolic.png | ||
23bf08b1f7e97e29fa8b6272f9ffaee1 usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla-white.png | ||
7bc35e9977826354b8b06e053583b2a7 usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla.png | ||
8de20ca5cc735b18e24953b48d37ca9f usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla-symbolic.png | ||
8a6954c2e3519262de68281e93887c0e usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla-white.png | ||
77bc37b2590d61137a0707df79d18522 usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla.png | ||
012879568528aa7a853f3a13aaf102d1 usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla-symbolic.png | ||
20170c07359ca7198c8f10d7c8f2e92d usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla-white.png | ||
8676bb3c7fc54b97938f5b9a4afb3d25 usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla.png | ||
9d3b5f5920fcbd7d3232e5901be8631a usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla-symbolic.svg | ||
8127fd6b2c6bebf3d8991195e54caaaf usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla-white.svg | ||
75ed326250d71e3e7e38764a1bf4aaff usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla.svg | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/128x128/emblems/emblem-vanilla-symbolic.icon | ||
e3955c5c204cba6ca811495a62640cff usr/share/icons/hicolor/128x128/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/128x128/emblems/emblem-vanilla-white.icon | ||
23bf08b1f7e97e29fa8b6272f9ffaee1 usr/share/icons/hicolor/128x128/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/128x128/emblems/emblem-vanilla.icon | ||
7bc35e9977826354b8b06e053583b2a7 usr/share/icons/hicolor/128x128/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla-symbolic.icon | ||
831fcccf9f7336e48ad6071c369a6ee7 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla-white.icon | ||
9fa3254035f5dde585247d0671da3751 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla.icon | ||
4e08f2f0446b77b3e84bfff87ad4ce71 usr/share/icons/hicolor/16x16/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla-symbolic.icon | ||
b0fdf1c8b8deb5092dd240eb81f5a878 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla-white.icon | ||
93994f7ea2f72acba1f951d4348a5a26 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla.icon | ||
122babcdc75834d6f772934341bf2900 usr/share/icons/hicolor/22x22/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/256x256/emblems/emblem-vanilla-symbolic.icon | ||
8de20ca5cc735b18e24953b48d37ca9f usr/share/icons/hicolor/256x256/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/256x256/emblems/emblem-vanilla-white.icon | ||
8a6954c2e3519262de68281e93887c0e usr/share/icons/hicolor/256x256/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/256x256/emblems/emblem-vanilla.icon | ||
77bc37b2590d61137a0707df79d18522 usr/share/icons/hicolor/256x256/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/32x32/emblems/emblem-vanilla-symbolic.icon | ||
5e2b624944bbc61f8c8cc3ef09ca61ab usr/share/icons/hicolor/32x32/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/32x32/emblems/emblem-vanilla-white.icon | ||
730ca268b439ae6455a421a6eae7a6ad usr/share/icons/hicolor/32x32/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/32x32/emblems/emblem-vanilla.icon | ||
74fb419bccd5b34c04d9a6e4cf434cb1 usr/share/icons/hicolor/32x32/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/36x36/emblems/emblem-vanilla-symbolic.icon | ||
b6e40ef1ad8bb66e0d52666af5ae281d usr/share/icons/hicolor/36x36/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/36x36/emblems/emblem-vanilla-white.icon | ||
0d75ab108903fc27cd65929c52ba34d6 usr/share/icons/hicolor/36x36/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/36x36/emblems/emblem-vanilla.icon | ||
97454c1b2933073a13c53d53ec20f424 usr/share/icons/hicolor/36x36/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/48x48/emblems/emblem-vanilla-symbolic.icon | ||
7ee151eee223ab37a57e6aeef42ecad8 usr/share/icons/hicolor/48x48/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/48x48/emblems/emblem-vanilla-white.icon | ||
43ffc147b3cbade035a363748650075e usr/share/icons/hicolor/48x48/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/48x48/emblems/emblem-vanilla.icon | ||
fda678e19652280a3d27313513058986 usr/share/icons/hicolor/48x48/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/64x64/emblems/emblem-vanilla-symbolic.icon | ||
012879568528aa7a853f3a13aaf102d1 usr/share/icons/hicolor/64x64/emblems/emblem-vanilla-symbolic.png | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/64x64/emblems/emblem-vanilla-white.icon | ||
20170c07359ca7198c8f10d7c8f2e92d usr/share/icons/hicolor/64x64/emblems/emblem-vanilla-white.png | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/64x64/emblems/emblem-vanilla.icon | ||
8676bb3c7fc54b97938f5b9a4afb3d25 usr/share/icons/hicolor/64x64/emblems/emblem-vanilla.png | ||
372063fc7fd62b151842e6ac762700f3 usr/share/icons/hicolor/scalable/emblems/emblem-vanilla-symbolic.icon | ||
9d3b5f5920fcbd7d3232e5901be8631a usr/share/icons/hicolor/scalable/emblems/emblem-vanilla-symbolic.svg | ||
866150c265cbeaf809f189c407172d07 usr/share/icons/hicolor/scalable/emblems/emblem-vanilla-white.icon | ||
8127fd6b2c6bebf3d8991195e54caaaf usr/share/icons/hicolor/scalable/emblems/emblem-vanilla-white.svg | ||
558e98e7e4d641f0c74e6b13a4554572 usr/share/icons/hicolor/scalable/emblems/emblem-vanilla.icon | ||
75ed326250d71e3e7e38764a1bf4aaff usr/share/icons/hicolor/scalable/emblems/emblem-vanilla.svg | ||
ddd54a71406d91d4e42d121547fb6475 usr/share/lintian/overrides/desktop-base | ||
452dc0dfe21a163185f3dc227c60b146 usr/share/pixmaps/debian-security.png |
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,57 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# Tag to allow some debhelper commands to inject relevant code | ||
# Automatically added by dh_icons/13.6ubuntu1 | ||
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then | ||
if command -v update-icon-caches >/dev/null; then | ||
update-icon-caches /usr/share/icons/desktop-base | ||
fi | ||
fi | ||
# End automatically added section | ||
|
||
|
||
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ]; then | ||
# Vendor logo alternative | ||
mkdir -p /usr/share/images/vendor-logos | ||
update-alternatives --install \ | ||
/usr/share/images/vendor-logos \ | ||
vendor-logos \ | ||
/usr/share/desktop-base/vanilla-logos 50 \ | ||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor.png \ | ||
emblem-vendor-64 \ | ||
/usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla.png \ | ||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor.png \ | ||
emblem-vendor-128 \ | ||
/usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla.png \ | ||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor.png \ | ||
emblem-vendor-256 \ | ||
/usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla.png \ | ||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor.svg \ | ||
emblem-vendor-scalable \ | ||
/usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla.svg \ | ||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-symbolic.png \ | ||
emblem-vendor-symbolic-64 \ | ||
/usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla-symbolic.png \ | ||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-symbolic.png \ | ||
emblem-vendor-symbolic-128 \ | ||
/usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla-symbolic.png \ | ||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-symbolic.png \ | ||
emblem-vendor-symbolic-256 \ | ||
/usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla-symbolic.png \ | ||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-symbolic.svg \ | ||
emblem-vendor-symbolic-scalable \ | ||
/usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla-symbolic.svg \ | ||
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-white.png \ | ||
emblem-vendor-white-64 \ | ||
/usr/share/icons/desktop-base/64x64/emblems/emblem-vanilla-white.png \ | ||
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-white.png \ | ||
emblem-vendor-white-128 \ | ||
/usr/share/icons/desktop-base/128x128/emblems/emblem-vanilla-white.png \ | ||
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-white.png \ | ||
emblem-vendor-white-256 \ | ||
/usr/share/icons/desktop-base/256x256/emblems/emblem-vanilla-white.png \ | ||
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-white.svg \ | ||
emblem-vendor-white-scalable \ | ||
/usr/share/icons/desktop-base/scalable/emblems/emblem-vanilla-white.svg | ||
fi |
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,7 @@ | ||
#!/bin/sh | ||
set -e | ||
# Automatically added by dh_icons/13.6ubuntu1 | ||
if command -v update-icon-caches >/dev/null; then | ||
update-icon-caches /usr/share/icons/desktop-base | ||
fi | ||
# End automatically added section |
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,12 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# Tag to allow some debhelper commands to inject relevant code | ||
|
||
|
||
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then | ||
# Remove vendor logos alternative, all slaves get removed automatically | ||
update-alternatives --remove \ | ||
vendor-logos \ | ||
/usr/share/desktop-base/vanilla-logos | ||
fi |
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 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 358 358" width="358pt" height="358pt"><defs><clipPath id="_clipPath_IL4AliEVTG4OyvgAHwDFjOIKJcV7p1mm"><rect width="358" height="358"/></clipPath></defs><g clip-path="url(#_clipPath_IL4AliEVTG4OyvgAHwDFjOIKJcV7p1mm)"><circle vector-effect="non-scaling-stroke" cx="179" cy="179" r="179" fill="rgb(251,189,78)"/><path d=" M 142.934 134.566 C 142.613 136.636 142.841 141.436 144.486 148.192 C 128.884 135.405 109.18 135.844 87.464 139.901 C 80.58 141.187 73.761 141.614 67.006 141.183 C 70.479 154.349 74.178 165.094 78.1 173.421 C 85.412 188.943 97.237 199.639 100.701 202.428 C 103.042 204.314 110.814 208.037 123.323 210.232 C 121.928 210.694 120.616 211.189 119.388 211.718 C 100.185 219.98 91.793 238.266 85.902 260.092 C 84.077 266.854 81.506 273.184 78.189 279.084 C 91.56 281.661 102.847 282.987 112.05 283.06 C 129.208 283.198 143.972 277.18 147.988 275.267 C 152.004 273.354 164.793 262.473 175.569 239.924 C 176.852 237.239 178.027 234.372 179.096 231.318 C 184.377 246.352 189.966 257.294 195.862 264.145 C 209.498 279.989 229.459 282.518 252.047 281.6 C 259.043 281.315 265.855 281.871 272.479 283.269 C 270.929 269.741 268.812 258.574 266.126 249.771 C 261.116 233.361 250.951 221.077 247.923 217.82 C 246.08 215.837 240.091 211.747 230.106 208.054 C 235.903 207.464 240.853 206.461 244.953 205.044 C 264.711 198.216 274.425 180.597 281.906 159.263 C 284.223 152.655 287.252 146.53 290.994 140.889 C 277.849 137.337 266.689 135.186 257.517 134.435 C 240.415 133.035 225.25 137.952 221.104 139.565 C 219.356 140.244 215.935 142.399 211.635 146.29 C 215.396 125.953 205.051 108.839 190.43 91.798 C 185.87 86.484 182.086 80.794 179.077 74.731 C 169.419 84.331 161.97 92.913 156.727 100.477 C 146.952 114.579 143.614 130.17 142.934 134.566 Z M 179.324 211.318 C 192.618 211.318 203.394 200.542 203.394 187.249 C 203.394 173.956 192.618 163.18 179.324 163.18 C 166.031 163.18 155.255 173.956 155.255 187.249 C 155.255 200.542 166.031 211.318 179.324 211.318 Z " fill-rule="evenodd" fill="rgb(255,255,255)"/></g></svg> |
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 @@ | ||
.face |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.75 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.01 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.2 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.9 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.93 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-version-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.5 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-version-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.86 KB
debian/desktop-base/usr/share/desktop-base/vanilla-logos/logo-text-version-64.png
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.