This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
forked from blue-build/legacy-template
-
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.
✨ feat(*): install themes using a script instead of a package
This is much easier and hassle-free, especially since, for example, Bibata Coursor does not build for F39 in the COPR repository
- Loading branch information
1 parent
aa51aea
commit 0a9ace8
Showing
4 changed files
with
19 additions
and
7 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
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ scripts: | |
- signing.sh | ||
- container-tools.sh | ||
- udev-rules.sh | ||
- systemwide_themes.sh |
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,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -oue pipefail | ||
|
||
FILES_ROOT="/tmp/config/files" | ||
|
||
wget -O "${FILES_ROOT}/Bibata-Modern-Ice.tar.xz" https://github.com/ful1e5/Bibata_Cursor/releases/latest/download/Bibata-Modern-Ice.tar.xz | ||
wget -O "${FILES_ROOT}/Bibata-Modern-Classic.tar.xz" https://github.com/ful1e5/Bibata_Cursor/releases/latest/download/Bibata-Modern-Classic.tar.xz | ||
|
||
cd "${FILES_ROOT}" || exit | ||
|
||
for f in *.tar.xz; do | ||
echo "Unpacking ${f}" | ||
tar -xf "${f}" | ||
done | ||
|
||
cp -r Bibata-Modern-Classic "/usr/share/icons/" | ||
cp -r Bibata-Modern-Ice "/usr/share/icons/" |
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