-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adwaita-colors-icon-theme: Add at v2.4.1
**Summary** Add adwaital-colors-icon-theme at v.2.4.1 Resolves #4626
- Loading branch information
Showing
4 changed files
with
7,014 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,5 @@ | ||
This file is used to indicate primary maintainership for this package. A package may list more than one maintainer to avoid bus factor issues. People on this list may be considered “subject-matter experts”. Please note that Solus Staff may need to perform necessary rebuilds, upgrades, or security fixes as part of the normal maintenance of the Solus package repository. If you believe this package requires an update, follow documentation from https://help.getsol.us/docs/packaging/procedures/request-a-package-update. In the event that this package becomes insufficiently maintained, the Solus Staff reserves the right to request a new maintainer, or deprecate and remove this package from the repository entirely. | ||
|
||
- Muhammad Alfi Syahrin | ||
- Matrix: @alfisya:matrix.org | ||
- Email: [email protected] |
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,6 @@ | ||
releases: | ||
id: 375991 | ||
rss: https://github.com/dpejoh/Adwaita-colors/tags.atom | ||
# No known CPE, checked 2024-12-19 | ||
security: | ||
cpe: ~ |
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,24 @@ | ||
name : adwaita-colors-icon-theme | ||
version : 2.4.1 | ||
release : 1 | ||
source : | ||
- https://github.com/dpejoh/Adwaita-colors/archive/refs/tags/v2.4.1.tar.gz : 4c497ce5187f39faf384cb6fe87b122d77e9619cfc1a68ad3544f61a3fc2e6d4 | ||
homepage : https://github.com/dpejoh/Adwaita-colors/ | ||
license : GPL-3.0-or-later | ||
component : desktop.theme | ||
summary : Customizes Adwaita icons to match your GNOME theme's accent color | ||
description: | | ||
Adwaita Colors customizes Adwaita icons to match your GNOME theme's accent color, providing a cohesive, personalized look. | ||
install : | | ||
# Find all directories starting with "Adwaita-" | ||
find $workdir -type d -name "Adwaita-*" | while read -r dir; do | ||
# Construct the full path to the "index.theme" file | ||
file="$dir/index.theme" | ||
# Check if the file exists and contains the target text | ||
if [ -f "$file" ] && grep -q "Inherits=Adwaita," "$file"; then | ||
# Replace the text using sed | ||
sed -i 's/Inherits=Adwaita,/Inherits=MoreWaita,Adwaita,/g' "$file" | ||
fi | ||
done | ||
install -dm0755 $installdir/usr/share/icons/ | ||
cp -r $workdir/Adwaita-* $installdir/usr/share/icons/ |
Oops, something went wrong.