mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
desktop/nordic-gtk-theme: Added (Nord-derived themes)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
fc0da5a95b
commit
998d466e2f
5 changed files with 166 additions and 0 deletions
16
desktop/nordic-gtk-theme/README
Normal file
16
desktop/nordic-gtk-theme/README
Normal file
|
@ -0,0 +1,16 @@
|
|||
Nordic is a Gtk3.20+ theme created using the awesome Nord color palette.
|
||||
|
||||
To set the theme on Gnome, run the following commands in Terminal:
|
||||
gsettings set org.gnome.desktop.interface gtk-theme "Nordic"
|
||||
gsettings set org.gnome.desktop.wm.preferences theme "Nordic"
|
||||
or Change via distribution specific tweak tool.
|
||||
|
||||
The following variant are included:
|
||||
- Nordic
|
||||
- Nordic-standard-buttons
|
||||
- Nordic-Polar
|
||||
- Nordic-Polar-standard-buttons
|
||||
- Nordic-darker
|
||||
- Nordic-darker-standard-buttons
|
||||
- Nordic-bluish-accent
|
||||
- Nordic-bluish-accent-standard-buttons
|
14
desktop/nordic-gtk-theme/doinst.sh
Normal file
14
desktop/nordic-gtk-theme/doinst.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -x /usr/bin/update-mime-database ]; then
|
||||
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
93
desktop/nordic-gtk-theme/nordic-gtk-theme.SlackBuild
Normal file
93
desktop/nordic-gtk-theme/nordic-gtk-theme.SlackBuild
Normal file
|
@ -0,0 +1,93 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Slackware build script for "nordic-gtk-theme".
|
||||
|
||||
# Copyright 2023 Marco Lavorini, Campiglia Marittima Italy
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=nordic-gtk-theme
|
||||
VERSION=${VERSION:-2.2.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
|
||||
mkdir -p $PKG/usr/share/themes
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
for SRCNAM in \
|
||||
Nordic \
|
||||
Nordic-standard-buttons \
|
||||
Nordic-Polar \
|
||||
Nordic-Polar-standard-buttons \
|
||||
Nordic-darker \
|
||||
Nordic-darker-standard-buttons \
|
||||
Nordic-bluish-accent \
|
||||
Nordic-bluish-accent-standard-buttons
|
||||
do
|
||||
tar xvf $CWD/$SRCNAM.tar.?z
|
||||
cd $SRCNAM
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
mkdir -p $PKG/usr/share/themes/$SRCNAM
|
||||
cp -a assets cinnamon gnome-shell gtk-2.0 gtk-3.0 gtk-4.0 metacity-1 xfwm4 $PKG/usr/share/themes/$SRCNAM
|
||||
cp -a LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
install -m 0644 index.theme $PKG/usr/share/themes/$SRCNAM
|
||||
cd $TMP
|
||||
done
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|
24
desktop/nordic-gtk-theme/nordic-gtk-theme.info
Normal file
24
desktop/nordic-gtk-theme/nordic-gtk-theme.info
Normal file
|
@ -0,0 +1,24 @@
|
|||
PRGNAM="nordic-gtk-theme"
|
||||
VERSION="2.2.0"
|
||||
HOMEPAGE="https://github.com/EliverLara/Nordic"
|
||||
DOWNLOAD="https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-standard-buttons.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-Polar.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-Polar-standard-buttons.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-darker.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-darker-standard-buttons.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-bluish-accent.tar.xz \
|
||||
https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic-bluish-accent-standard-buttons.tar.xz"
|
||||
MD5SUM="a354aa55550f228223b81106dfeb918d \
|
||||
0c0cb7ee25aafc9c192d8252896e20c3 \
|
||||
f08a4361637a89923eb08eb4bd099751 \
|
||||
bad92a77865fefc995aaee2f6e1dc7de \
|
||||
5b0ee170958261a5ace50fb4f1a4cd7e \
|
||||
6c301f501fed19c54a6ffbba67c5c43c \
|
||||
4f6ef676a64a138135b9a666cf536ed8 \
|
||||
8ed2902d0d0c63d095e1abdbf89aeb65"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Marco Lavorini"
|
||||
EMAIL="sbo.mlavorini@outlook.com"
|
19
desktop/nordic-gtk-theme/slack-desc
Normal file
19
desktop/nordic-gtk-theme/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
nordic-gtk-theme: nordic-gtk-theme (Nord-derived themes)
|
||||
nordic-gtk-theme: Nordic is a Gtk3.20+ theme created using the awesome Nord color
|
||||
nordic-gtk-theme: palette.
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme: Homepage: https://github.com/EliverLara/Nordic
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme:
|
||||
nordic-gtk-theme:
|
Loading…
Reference in a new issue