-
-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Issue]: Change Wallpapers doesn't work, Material colors are not generated, and AGS messes up #428
Comments
please give logs of |
here you go #!/usr/bin/env bash
if [ "$1" == "--noswitch" ]; then
imgpath=$(swww query | head -1 | awk -F 'image: ' '{print $2}')
# imgpath=$(ags run-js 'wallpaper.get(0)')
else
# Select and set image (hyprland)
cd "$HOME/Pictures"
imgpath=$(yad --width 1200 --height 800 --file --title='Choose wallpaper' --add-preview --large-preview)
screensizey=$(xrandr --current | grep '*' | uniq | awk '{print $1}' | cut -d 'x' -f2 | head -1)
cursorposx=$(hyprctl cursorpos -j | gojq '.x' 2>/dev/null) || cursorposx=960
cursorposy=$(hyprctl cursorpos -j | gojq '.y' 2>/dev/null) || cursorposy=540
cursorposy_inverted=$(( screensizey - cursorposy ))
if [ "$imgpath" == '' ]; then
echo 'Aborted'
exit 0
fi
# ags run-js "wallpaper.set('')"
# sleep 0.1 && ags run-js "wallpaper.set('${imgpath}')" &
swww img "$imgpath" --transition-step 100 --transition-fps 60 \
--transition-type grow --transition-angle 30 --transition-duration 1 \
--transition-pos "$cursorposx, $cursorposy_inverted"
fi
# Generate colors for ags n stuff
"$HOME"/.config/ags/scripts/color_generation/colorgen.sh "${imgpath}" --apply --smart for reference, i purged my ags directory and also moved my |
@daUnknownCoder |
ah sorry, misunderstood, here you go, posted the main thing (yad:10644): Gtk-WARNING **: 20:19:51.898: Theme parsing error: gtk.css:122:58: Expected a valid selector
Traceback (most recent call last):
File "/home/daUnknownCoder/.config/ags/scripts/color_generation/generate_colors_material.py", line 6, in <module>
from materialyoucolor.quantize import QuantizeCelebi
ModuleNotFoundError: No module named 'materialyoucolor' Full log here(yad:11702): Gtk-WARNING **: 20:21:35.022: Theme parsing error: gtk.css:95:30: '' is not a valid color name
(yad:11702): Gtk-WARNING **: 20:21:35.022: Theme parsing error: gtk.css:95:44: Expected a valid selector
... a few times ...
(yad:11702): Gtk-WARNING **: 20:21:35.022: Theme parsing error: gtk.css:122:58: Expected a valid selector
Traceback (most recent call last):
File "/home/daUnknownCoder/.config/ags/scripts/color_generation/generate_colors_material.py", line 6, in <module>
from materialyoucolor.quantize import QuantizeCelebi
ModuleNotFoundError: No module named 'materialyoucolor'
Error: Undefined variable.
╷
5 │ @if $transparent == True {
│ ^^^^^^^^^^^^
╵
scss/_colors.scss 5:5 @import
scss/main.scss 9:9 root stylesheet
(com.github.Aylur.ags:11905): Gtk-WARNING **: 20:21:42.205: Theme parsing error: gtk.css:95:30: '' is not a valid color name
(com.github.Aylur.ags:11905): Gtk-WARNING **: 20:21:42.205: Theme parsing error: gtk.css:95:44: Expected a valid selector
... a few times ...
(com.github.Aylur.ags:11905): Gtk-WARNING **: 20:21:42.206: Theme parsing error: gtk.css:121:56: Expected a valid selector
(com.github.Aylur.ags:11905): Gtk-WARNING **: 20:21:42.206: Theme parsing error: gtk.css:122:58: Expected a valid selector
undefined
[Gradience] INFO: Preset Material3_Generated applied successfully for Gtk 3 and Gtk 4 applications.
[Gradience] INFO: In order for changes to take full effect, you need to log out.
(com.github.Aylur.ags:11953): Gtk-WARNING **: 20:21:42.797: Theme parsing error: gtk.css:95:30: '' is not a valid color name
... a few times ...
(com.github.Aylur.ags:11953): Gtk-WARNING **: 20:21:42.810: Theme parsing error: gtk.css:121:56: Expected a valid selector
(com.github.Aylur.ags:11953): Gtk-WARNING **: 20:21:42.811: Theme parsing error: gtk.css:122:58: Expected a valid selector
Gtk.CssProviderError: style.css:9:5Invalid name of pseudo-class |
Its clearly mentioned in the log, install python-materialyoucolor-git
|
tried that, i can generate colors with the direct command, but not with the Kooha-2024-04-20-00-42-24.webm |
In this video, even executing the script doesn't work. Can you elaborate? Your comment and recordings seems to be contradictory. |
Try reinstalling with the install script |
the thing is, the colors do get generated when using the direct command (the script file), and i cannot change the extra stuff it provides like dark mode/ transparency/ rainbow stuff, so with the keybind, it doesnt work at all |
|
i don't get it. i just installed my dotfiles like a few days ago on a fresh endeavouros install and things work fine... |
The root cause seems to be
So it always generates an empty And yes, I have |
Have same issue |
issue still persit. |
So I dig it a bit further. Below is where python3 finds the modules: python3
Python 3.12.3 (main, Apr 23 2024, 09:16:07) [GCC 13.2.1 20240417] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.path)
['', '/usr/lib/python312.zip', '/usr/lib/python3.12', '/usr/lib/python3.12/lib-dynload', '/usr/lib/python3.12/site-packages']
>>> And below is where pacman -Qlq python-materialyoucolor-git
/usr/
/usr/lib/
/usr/lib/python3.11/
/usr/lib/python3.11/site-packages/
/usr/lib/python3.11/site-packages/materialyoucolor-2.0.9.dist-info/
/usr/lib/python3.11/site-packages/materialyoucolor-2.0.9.dist-info/LICENSE
/usr/lib/python3.11/site-packages/materialyoucolor-2.0.9.dist-info/METADATA
... (Too many lines, anyway they all lay under /usr/lib/python3.11 ) So I reinstalled Anyway, we can add cleanbuild for that package to resolve this problem, but the root cause is the PKGBUILD, since I had done @midn8hustlr Would you please investigate further on the PKGBUILD to make sure that when running |
Interesting, the aur package Honestly adding cleanbuild for those packages to ensure they do upgrade normally is not the job of |
working now thank you @clsty |
Well now it's the most interesting part: Or maybe they should not be cleanbuild, instead we should keep them under old |
Anyway I've done my part. @daUnknownCoder Try it again please? |
Thx you very much! I've done what you said and now it's all perfect, still it's a strange issue. Just one question: if I update aur packages manually do I have to select cleanbuild for these packages everytime I update? |
i am not able to compile ####################################################
[./install.sh]: Next command:
yay -S --needed python-build python-pillow python-pywal python-setuptools-scm python-wheel
Execute?
y = Yes
e = Exit now
s = Skip this command (NOT recommended - your setup might not work correctly)
yesforall = Yes and don't ask again; NOT recommended unless you really sure
====> y
OK, executing...
Sync Dependency (3): python-build-1.2.1-3, python-pillow-10.3.0-2, python-wheel-0.43.0-4
Sync Explicit (2): python-pywal-3.3.0-9, python-setuptools-scm-8.0.4-3
Hi daUnknownCoder, Please enter your password ->
resolving dependencies...
looking for conflicting packages...
Packages (5) python-build-1.2.1-3 python-pillow-10.3.0-2 python-pywal-3.3.0-9 python-setuptools-scm-8.0.4-3 python-wheel-0.43.0-4
Total Download Size: 1.06 MiB
Total Installed Size: 5.12 MiB
Net Upgrade Size: -0.70 MiB
:: Proceed with installation? [Y/n] y
:: Retrieving packages...
python-pillow-10.3.0-2-x86_64 814.2 KiB 159 KiB/s 00:05 [############################################################] 100%
python-setuptools-scm-8.0.4-3-any 83.1 KiB 136 KiB/s 00:01 [############################################################] 100%
python-pywal-3.3.0-9-any 78.1 KiB 130 KiB/s 00:01 [############################################################] 100%
python-wheel-0.43.0-4-any 62.0 KiB 162 KiB/s 00:00 [############################################################] 100%
python-build-1.2.1-3-any 47.0 KiB 131 KiB/s 00:00 [############################################################] 100%
Total (5/5) 1084.3 KiB 139 KiB/s 00:08 [############################################################] 100%
(5/5) checking keys in keyring [############################################################] 100%
(5/5) checking package integrity [############################################################] 100%
(5/5) loading package files [############################################################] 100%
(5/5) checking for file conflicts [############################################################] 100%
(5/5) checking available disk space [############################################################] 100%
:: Processing package changes...
(1/5) upgrading python-pillow [############################################################] 100%
(2/5) upgrading python-wheel [############################################################] 100%
(3/5) upgrading python-build [############################################################] 100%
(4/5) upgrading python-pywal [############################################################] 100%
(5/5) upgrading python-setuptools-scm [############################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
[./install.sh]: Command "yay -S --needed python-build python-pillow python-pywal python-setuptools-scm python-wheel" finished.
####################################################
[./install.sh]: Next command:
yay -S --needed python-pywayland python-psutil hypridle-git hyprlock-git wlogout wl-clipboard hyprpicker-git anyrun-git
Execute?
y = Yes
e = Exit now
s = Skip this command (NOT recommended - your setup might not work correctly)
yesforall = Yes and don't ask again; NOT recommended unless you really sure
====> y
OK, executing...
-> hypridle-git-0.1.1.r7.geb916db1-1 is up to date -- skipping
-> hyprlock-git-0.3.0.r10.g2bce52f0-1 is up to date -- skipping
-> hyprpicker-git-0.2.0.r8.e2472f4-1 is up to date -- skipping
-> anyrun-git-r136.e14da6c-5 is up to date -- skipping
Sync Explicit (1): python-pywayland-0.4.17-2
Sync Dependency (2): python-psutil-5.9.8-4, wl-clipboard-1:2.2.1-1
AUR Explicit (1): wlogout-1.2.2-0
:: (1/1) Downloaded PKGBUILD: wlogout
1 wlogout (Installed) (Build Files Exist)
==> Packages to cleanBuild?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
1 wlogout (Installed) (Build Files Exist)
==> Diffs to show?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
==> Making package: wlogout 1.2.2-0 (Mon 29 Apr 2024 06:32:51 PM IST)
==> Retrieving sources...
-> Downloading wlogout-1.2.2.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 529k 100 529k 0 0 159k 0 0:00:03 0:00:03 --:--:-- 402k
-> Downloading wlogout-1.2.2.tar.gz.sig...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 566 100 566 0 0 261 0 0:00:02 0:00:02 --:--:-- 1559
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with md5sums...
wlogout-1.2.2.tar.gz ... Passed
wlogout-1.2.2.tar.gz.sig ... Skipped
:: (1/1) Parsing SRCINFO: wlogout
pub rsa4096 2019-09-06 [SC]
F4FDB18A9937358364B276E9E25D679AF73C6D2F
uid [ unknown] Haden Collins <[email protected]>
sub rsa4096 2019-09-06 [E]
warning: wl-clipboard-1:2.2.1-1 is up to date -- skipping
resolving dependencies...
looking for conflicting packages...
Packages (2) python-psutil-5.9.8-4 python-pywayland-0.4.17-2
Total Download Size: 0.79 MiB
Total Installed Size: 6.76 MiB
Net Upgrade Size: -0.28 MiB
:: Proceed with installation? [Y/n] y
:: Retrieving packages...
python-psutil-5.9.8-4-x86_64 487.2 KiB 138 KiB/s 00:04 [############################################################] 100%
python-pywayland-0.4.17-2-x86_64 325.5 KiB 167 KiB/s 00:02 [############################################################] 100%
Total (2/2) 812.7 KiB 137 KiB/s 00:06 [############################################################] 100%
(2/2) checking keys in keyring [############################################################] 100%
(2/2) checking package integrity [############################################################] 100%
(2/2) loading package files [############################################################] 100%
(2/2) checking for file conflicts [############################################################] 100%
(2/2) checking available disk space [############################################################] 100%
:: Processing package changes...
(1/2) upgrading python-pywayland [############################################################] 100%
(2/2) upgrading python-psutil [############################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
==> Making package: wlogout 1.2.2-0 (Mon 29 Apr 2024 06:34:50 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found wlogout-1.2.2.tar.gz
-> Found wlogout-1.2.2.tar.gz.sig
==> Validating source files with md5sums...
wlogout-1.2.2.tar.gz ... Passed
wlogout-1.2.2.tar.gz.sig ... Skipped
==> Verifying source file signatures with gpg...
wlogout-1.2.2.tar.gz ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Extracting wlogout-1.2.2.tar.gz with bsdtar
==> Sources are ready.
==> Making package: wlogout 1.2.2-0 (Mon 29 Apr 2024 06:34:55 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
The Meson build system
Version: 1.4.0
Source dir: /home/daUnknownCoder/.cache/yay/wlogout/src
Build dir: /home/daUnknownCoder/.cache/yay/wlogout/src/build
Build type: native build
Project name: wlogout
Project version: 1.2.2
C compiler for the host machine: cc (gcc 13.2.1 "cc (GCC) 13.2.1 20230801")
C linker for the host machine: cc ld.bfd 2.42.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Configuring config.h using configuration
Found pkg-config: YES (/usr/bin/pkg-config) 2.1.1
Build-time dependency scdoc found: YES 1.11.3
Program /usr/bin/scdoc found: YES (/usr/bin/scdoc)
Program sh found: YES (/usr/bin/sh)
Run-time dependency gtk+-wayland-3.0 found: YES 3.24.41
Run-time dependency gtk-layer-shell-0 found: YES 0.8.2
Build targets in project: 3
wlogout 1.2.2
User defined options
prefix: /usr
Found ninja-1.11.1 at /usr/bin/ninja
ninja: Entering directory `build'
[4/4] Linking target wlogout
==> Entering fakeroot environment...
==> Starting package()...
ninja: Entering directory `build'
[0/1] Installing files.
Installing subdir /home/daUnknownCoder/.cache/yay/wlogout/src/assets to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/hibernate.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/shutdown.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/CREDIT.md to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/reboot.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/logout.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/suspend.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/assets/lock.svg to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/assets
Installing subdir /home/daUnknownCoder/.cache/yay/wlogout/src/icons to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/logout.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/shutdown.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/reboot.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/lock.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/suspend.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/icons/hibernate.png to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/wlogout/icons
Installing wlogout.1 to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/man/man1
Installing wlogout.5 to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/man/man5
Installing wlogout to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/bin
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/completions/wlogout.bash to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/bash-completion/completions
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/completions/wlogout.fish to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/fish/completions
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/completions/_wlogout to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/usr/share/zsh/site-functions
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/layout to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/etc/wlogout
Installing /home/daUnknownCoder/.cache/yay/wlogout/src/style.css to /home/daUnknownCoder/.cache/yay/wlogout/pkg/wlogout/etc/wlogout
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "wlogout"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Creating package "wlogout-debug"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: wlogout 1.2.2-0 (Mon 29 Apr 2024 06:36:41 PM IST)
==> Cleaning up...
loading packages...
resolving dependencies...
looking for conflicting packages...
Packages (2) wlogout-1.2.2-0 wlogout-debug-1.2.2-0
Total Installed Size: 0.20 MiB
Net Upgrade Size: 0.00 MiB
:: Proceed with installation? [Y/n] y
(2/2) checking keys in keyring [############################################################] 100%
(2/2) checking package integrity [############################################################] 100%
(2/2) loading package files [############################################################] 100%
(2/2) checking for file conflicts [############################################################] 100%
(2/2) checking available disk space [############################################################] 100%
:: Processing package changes...
(1/2) upgrading wlogout [############################################################] 100%
(2/2) upgrading wlogout-debug [############################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
[./install.sh]: Command "yay -S --needed python-pywayland python-psutil hypridle-git hyprlock-git wlogout wl-clipboard hyprpicker-git anyrun-git" finished.
####################################################
[./install.sh]: Next command:
yay -S --answerclean=a python-materialyoucolor-git gradience-git python-libsass python-material-color-utilities
Execute?
y = Yes
e = Exit now
s = Skip this command (NOT recommended - your setup might not work correctly)
yesforall = Yes and don't ask again; NOT recommended unless you really sure
====> y
OK, executing...
AUR Explicit (3): gradience-git-0.3.1.r2.ge5dd5c9-1, python-materialyoucolor-git-2.0.8.r1.g9780c78-3, python-material-color-utilities-0.1.5-1
AUR Dependency (1): python-libsass-0.23.0-1
:: PKGBUILD up to date, skipping download: python-materialyoucolor-git
:: PKGBUILD up to date, skipping download: gradience-git
:: PKGBUILD up to date, skipping download: python-material-color-utilities
:: PKGBUILD up to date, skipping download: python-libsass
4 python-materialyoucolor-git (Installed) (Build Files Exist)
3 gradience-git (Installed) (Build Files Exist)
2 python-material-color-utilities (Installed) (Build Files Exist)
1 python-libsass (Installed) (Build Files Exist)
==> Packages to cleanBuild?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==> a
:: Deleting (1/4): /home/daUnknownCoder/.cache/yay/python-materialyoucolor-git
HEAD is now at f855037 Add python-setuptools as make dependency
Removing materialyoucolor-python/
Removing python-materialyoucolor-git-2.0.9.r1.g57ec2e4-1-x86_64.pkg.tar.zst
Removing python-materialyoucolor-git-debug-2.0.9.r1.g57ec2e4-1-x86_64.pkg.tar.zst
:: Deleting (2/4): /home/daUnknownCoder/.cache/yay/gradience-git
HEAD is now at cb87589 fix: add prepare
Removing Gradience/
Removing Submodules/
Removing gradience-git-0.8.0.beta1.r212.g8b2c37b6-1-x86_64.pkg.tar.zst
:: Deleting (3/4): /home/daUnknownCoder/.cache/yay/python-material-color-utilities
HEAD is now at 322049b Updates
Removing material-color-utilities-python-0.1.5.tar.gz
Removing python-material-color-utilities-0.1.5-1-any.pkg.tar.zst
:: Deleting (4/4): /home/daUnknownCoder/.cache/yay/python-libsass
HEAD is now at 51884b1 0.23.0
Removing libsass-python/
Removing python-libsass-0.23.0-1-x86_64.pkg.tar.zst
Removing python-libsass-debug-0.23.0-1-x86_64.pkg.tar.zst
4 python-material-color-utilities (Installed) (Build Files Exist)
3 python-libsass (Installed) (Build Files Exist)
2 python-materialyoucolor-git (Installed) (Build Files Exist)
1 gradience-git (Installed) (Build Files Exist)
==> Diffs to show?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
==> Making package: python-material-color-utilities 0.1.5-1 (Mon 29 Apr 2024 06:37:45 PM IST)
==> Retrieving sources...
-> Downloading material-color-utilities-python-0.1.5.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0==> Making package: python-materialyoucolor-git 2.0.8.r1.g9780c78-3 (Mon 29 Apr 2024 06:37:45 PM IST)
==> Retrieving sources...
==> Making package: gradience-git 0.3.1.r2.ge5dd5c9-1 (Mon 29 Apr 2024 06:37:45 PM IST)
==> Retrieving sources...
-> Cloning materialyoucolor-python git repo...
Cloning into bare repository '/home/daUnknownCoder/.cache/yay/python-materialyoucolor-git/materialyoucolor-python'...
-> Cloning Gradience git repo...
Cloning into bare repository '/home/daUnknownCoder/.cache/yay/gradience-git/Gradience'...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 25702 100 25702 0 0 61968 0 --:--:-- --:--:-- --:--:-- 61968
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with b2sums...
material-color-utilities-python-0.1.5.tar.gz ... Passed
==> Making package: python-libsass 0.23.0-1 (Mon 29 Apr 2024 06:37:46 PM IST)
==> Retrieving sources...
-> Cloning libsass-python git repo...
Cloning into bare repository '/home/daUnknownCoder/.cache/yay/python-libsass/libsass-python'...
remote: Enumerating objects: 451, done.
remote: Counting objects: 100% (281/281), done.
remote: Compressing objects: 100% (178/178), done.
remote: Total 451 (delta 128), reused 194 (delta 78), pack-reused 170
Receiving objects: 100% (451/451), 259.40 KiB | 307.00 KiB/s, done.
Resolving deltas: 100% (204/204), done.
remote: Enumerating objects: 13793, done.
remote: Counting objects: 100% (759/759), done.
remote: Compressing objects: 100% (357/357), done.
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha256sums...
materialyoucolor-python ... Skipped
remote: Enumerating objects: 29309, done.
remote: Counting objects: 100% (12/12), done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 13793 (delta 426), reused 682 (delta 387), pack-reused 13034
Receiving objects: 100% (13793/13793), 8.02 MiB | 320.00 KiB/s, done.
Resolving deltas: 100% (7729/7729), done.2 MiB | 84.00 KiB/s
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha256sums...
Skippedsass-python ... Receiving objects: 13% (3811/29309), 2.01 MiB | 113.00 KiB/s
error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8)
error: 39289 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
==> ERROR: Failure while downloading Gradience git repo
Aborting...
-> error downloading sources: /home/daUnknownCoder/.cache/yay/gradience-git
context: error downloading sources: /home/daUnknownCoder/.cache/yay/gradience-git
context: exit status 1
:: (1/4) Parsing SRCINFO: python-material-color-utilities
:: (2/4) Parsing SRCINFO: python-libsass
:: (3/4) Parsing SRCINFO: python-materialyoucolor-git
:: (4/4) Parsing SRCINFO: gradience-git
==> Making package: python-libsass 0.23.0-1 (Mon 29 Apr 2024 06:38:58 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Updating libsass-python git repo...
==> Validating source files with sha256sums...
libsass-python ... Skipped
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Creating working copy of libsass-python git repo...
Cloning into 'libsass-python'...
done.
Switched to a new branch 'makepkg'
==> Starting pkgver()...
==> Sources are ready.
==> Making package: python-libsass 0.23.0-1 (Mon 29 Apr 2024 06:39:04 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Starting build()...
/usr/bin/python: No module named build
==> ERROR: A failure occurred in build().
Aborting...
-> Failed to install layer, rolling up to next layer.error:error making: python-libsass - exit status 4
==> Making package: python-libsass 0.23.0-1 (Mon 29 Apr 2024 06:39:06 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Updating libsass-python git repo...
==> Validating source files with sha256sums...
libsass-python ... Skipped
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Creating working copy of libsass-python git repo...
Cloning into 'libsass-python'...
done.
Switched to a new branch 'makepkg'
==> Starting pkgver()...
==> Sources are ready.
==> Making package: python-libsass 0.23.0-1 (Mon 29 Apr 2024 06:39:11 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Removing existing $pkgdir/ directory...
==> Starting build()...
/usr/bin/python: No module named build
==> ERROR: A failure occurred in build().
Aborting...
-> error making: python-libsass-exit status 4
==> Making package: python-materialyoucolor-git 2.0.8.r1.g9780c78-3 (Mon 29 Apr 2024 06:39:12 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Updating materialyoucolor-python git repo...
==> Validating source files with sha256sums...
materialyoucolor-python ... Skipped
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Creating working copy of materialyoucolor-python git repo...
Cloning into 'materialyoucolor-python'...
done.
==> Starting pkgver()...
==> Updated version: python-materialyoucolor-git 2.0.9.r1.g57ec2e4-1
==> Sources are ready.
==> Making package: python-materialyoucolor-git 2.0.9.r1.g57ec2e4-1 (Mon 29 Apr 2024 06:39:16 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Starting build()...
/usr/bin/python: No module named build
==> ERROR: A failure occurred in build().
Aborting...
-> error making: python-materialyoucolor-git-exit status 4
==> Making package: gradience-git 0.3.1.r2.ge5dd5c9-1 (Mon 29 Apr 2024 06:39:18 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning Gradience git repo...
Cloning into bare repository '/home/daUnknownCoder/.cache/yay/gradience-git/Gradience'...
remote: Enumerating objects: 29309, done.
remote: Counting objects: 100% (12/12), done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 29309 (delta 3), reused 0 (delta 0), pack-reused 29297
Receiving objects: 100% (29309/29309), 21.60 MiB | 376.00 KiB/s, done.
Resolving deltas: 100% (22584/22584), done.
-> Cloning Submodules git repo...
Cloning into bare repository '/home/daUnknownCoder/.cache/yay/gradience-git/Submodules'...
remote: Enumerating objects: 310, done.
remote: Counting objects: 100% (310/310), done.
remote: Compressing objects: 100% (209/209), done.
remote: Total 310 (delta 178), reused 202 (delta 92), pack-reused 0
Receiving objects: 100% (310/310), 135.55 KiB | 433.00 KiB/s, done.
Resolving deltas: 100% (178/178), done.
==> Validating source files with b2sums...
Gradience ... Skipped
Submodules ... Skipped
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Creating working copy of Gradience git repo...
Cloning into 'Gradience'...
done.
-> Creating working copy of Submodules git repo...
Cloning into 'Submodules'...
done.
==> Starting prepare()...
Submodule 'data/submodules' (https://github.com/GradienceTeam/Submodules) registered for path 'data/submodules'
Cloning into '/home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules'...
Submodule path 'data/submodules': checked out 'cc95cdf36c7c52ffa5d34dcf337e1523db89de26'
==> Starting pkgver()...
==> Updated version: gradience-git 0.8.0.beta1.r212.g8b2c37b6-1
==> Sources are ready.
==> Making package: gradience-git 0.8.0.beta1.r212.g8b2c37b6-1 (Mon 29 Apr 2024 06:40:28 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Starting build()...
+ exec meson setup --prefix /usr --libexecdir lib --sbindir bin --buildtype plain --auto-features enabled --wrap-mode nodownload -D b_pie=true -D python.bytecompile=1 Gradience build
The Meson build system
Version: 1.4.0
Source dir: /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience
Build dir: /home/daUnknownCoder/.cache/yay/gradience-git/src/build
Build type: native build
Project name: gradience
Project version: 0.8.0-beta2
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program git found: YES (/usr/bin/git)
Found pkg-config: YES (/usr/bin/pkg-config) 2.1.1
Run-time dependency glib-2.0 found: YES 2.80.0
Run-time dependency gtk4 found: YES 4.14.2
Run-time dependency libadwaita-1 found: YES 1.5.0
Run-time dependency pygobject-3.0 found: YES 3.48.1
Run-time dependency libsoup-3.0 found: YES 3.4.4
Program python3 (lxml) found: YES (/usr/bin/python3) modules: lxml
Configuring constants.py using configuration
Configuring gradience using configuration
Configuring gradience-cli using configuration
Program blueprint-compiler found: YES (/usr/bin/blueprint-compiler)
Configuring com.github.GradienceTeam.Gradience.desktop.in using configuration
Program msgfmt found: YES (/usr/bin/msgfmt)
Program desktop-file-validate found: YES (/usr/bin/desktop-file-validate)
Build-time dependency gio-2.0 found: YES 2.80.0
Program /usr/bin/glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring com.github.GradienceTeam.Gradience.appdata.xml.in using configuration
Program appstream-util found: YES (/usr/bin/appstream-util)
Configuring com.github.GradienceTeam.Gradience.gschema.xml using configuration
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program msginit found: YES (/usr/bin/msginit)
Program msgmerge found: YES (/usr/bin/msgmerge)
Program xgettext found: YES (/usr/bin/xgettext)
Dependency gio-2.0 found: YES 2.80.0 (cached)
Program /usr/bin/glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program gtk4-update-icon-cache found: YES (/usr/bin/gtk4-update-icon-cache)
Program update-desktop-database found: YES (/usr/bin/update-desktop-database)
Build targets in project: 33
gradience 0.8.0-beta2
User defined options
auto_features : enabled
buildtype : plain
libexecdir : lib
prefix : /usr
sbindir : bin
wrap_mode : nodownload
python.bytecompile: 1
b_pie : true
Found ninja-1.11.1 at /usr/bin/ninja
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /usr/bin/ninja -C /home/daUnknownCoder/.cache/yay/gradience-git/src/build
ninja: Entering directory `/home/daUnknownCoder/.cache/yay/gradience-git/src/build'
[29/30] Generating data/ui/blueprints with a custom command
warning: Gtk.ColorButton is deprecated
at ../Gradience/data/ui/option_row.blp line 32 column 5:
32 | ColorButton color-value {
| ^
hint: Use [[email protected]] instead
warning: Adw.Leaflet is deprecated
at ../Gradience/data/ui/window.blp line 17 column 5:
17 | Adw.Leaflet leaflet {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwleaflet)
warning: Adw.ViewSwitcherTitle is deprecated
at ../Gradience/data/ui/window.blp line 51 column 11:
51 | Adw.ViewSwitcherTitle title {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwviewswitchertitle)
warning: Gtk.FileChooserNative is deprecated
at ../Gradience/data/ui/monet_theming_group.blp line 41 column 1:
41 |Gtk.FileChooserNative monet-file-chooser {
|^
hint: Use [[email protected]] instead
warning: Adw.Leaflet is deprecated
at ../Gradience/data/ui/presets_manager_window.blp line 18 column 5:
18 | Adw.Leaflet leaflet {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwleaflet)
warning: Adw.ViewSwitcherTitle is deprecated
at ../Gradience/data/ui/presets_manager_window.blp line 49 column 11:
49 | Adw.ViewSwitcherTitle title {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwviewswitchertitle)
warning: Gtk.FileChooserNative is deprecated
at ../Gradience/data/ui/presets_manager_window.blp line 174 column 1:
174 |Gtk.FileChooserNative import_file_chooser {
|^
hint: Use [[email protected]] instead
warning: Adw.Leaflet is deprecated
at ../Gradience/data/ui/welcome_window.blp line 13 column 9:
13 | Adw.Leaflet leaflet {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwleaflet)
warning: Adw.Leaflet is deprecated
at ../Gradience/data/ui/share_window.blp line 13 column 9:
13 | Adw.Leaflet leaflet {
| ^
hint: See [the migration guide](migrating-to-breakpoints.html#replace-adwleaflet)
[30/30] Generating data/gradience_gresource with a custom command
==> Starting check()...
ninja: Entering directory `/home/daUnknownCoder/.cache/yay/gradience-git/src/build'
ninja: no work to do.
1/3 Validate desktop file OK 0.16s
2/3 Validate schema file OK 0.05s
3/3 Validate appstream file FAIL 5.14s exit status 1
>>> ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=75 /usr/bin/appstream-util validate /home/daUnknownCoder/.cache/yay/gradience-git/src/build/data/com.github.GradienceTeam.Gradience.appdata.xml
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― ✀ ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
stdout:
/home/daUnknownCoder/.cache/yay/gradience-git/src/build/data/com.github.GradienceTeam.Gradience.appdata.xml: FAILED:
• style-invalid : <image> has vertical padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-colors.png]
• style-invalid : <image> has horizontal padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-colors.png]
• style-invalid : <image> has vertical padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-advanced.png]
• style-invalid : <image> has horizontal padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-advanced.png]
• style-invalid : <image> has vertical padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/preset-manager-explore.png]
• style-invalid : <image> has horizontal padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/preset-manager-explore.png]
• style-invalid : <image> has vertical padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/preset-manager-installed.png]
• style-invalid : <image> has horizontal padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/preset-manager-installed.png]
• style-invalid : <image> has vertical padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-monet.png]
• style-invalid : <image> has horizontal padding [https://raw.githubusercontent.com/GradienceTeam/Design/main/Screenshots/Appdata/main-ui-monet.png]
stderr:
Validation of files failed
――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
Summary of Failures:
3/3 Validate appstream file FAIL 5.14s exit status 1
Ok: 2
Expected Fail: 0
Fail: 1
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /home/daUnknownCoder/.cache/yay/gradience-git/src/build/meson-logs/testlog.txt
==> Entering fakeroot environment...
==> Starting package()...
ninja: Entering directory `/home/daUnknownCoder/.cache/yay/gradience-git/src/build'
ninja: no work to do.
Installing subdir /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/gnome-shell.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/panel.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/colors.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/switches.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/palette.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/42/check-box.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/gnome-shell.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/panel.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/colors.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/switches.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/palette.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/43/check-box.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/gnome-shell.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/panel.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/colors.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/switches.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/palette.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/44/check-box.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/gnome-shell.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/panel.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/colors.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/switches.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/palette.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/shell/templates/45/check-box.template to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/templates/45
Installing subdir /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42 to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-on-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-on.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox-off-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-start.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-high-contrast.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/pad-osd.css to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-on-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/dash-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/calendar-today-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/running-indicator.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/workspace-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/calendar-today.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-off-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/toggle-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/process-working.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox-off-focused-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/checkbox.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_common.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_high-contrast-colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_widgets.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/NEWS to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_drawing.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/COPYING to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/gnome-shell-sass.doap to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/_palette.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_window-picker.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_notifications.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_search-entry.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_slider.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_network-dialog.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_workspace-switcher.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_panel.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_dialogs.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_base.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_dash.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_switcher-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_workspace-thumbnails.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_message-list.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_calendar.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_keyboard.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_overview.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_a11y.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_corner-ripple.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_misc.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_scrollbars.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_screen-shield.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_check-box.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_ibus-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_buttons.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_looking-glass.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_screenshot.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_entries.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_switches.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_app-grid.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_search-results.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_osd.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_login-dialog.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_popovers.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/42/gnome-shell-sass/widgets/_hotplug.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/42/gnome-shell-sass/widgets
Installing subdir /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43 to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-on-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-on.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox-off-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-start.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-high-contrast.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/pad-osd.css to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-on-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/dash-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/calendar-today-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/running-indicator.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/workspace-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/calendar-today.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-off-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/toggle-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/process-working.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox-off-focused-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/checkbox.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_common.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_high-contrast-colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_widgets.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/NEWS to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_drawing.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/COPYING to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/gnome-shell-sass.doap to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/_palette.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_window-picker.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_quick-settings.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_notifications.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_search-entry.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_slider.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_workspace-switcher.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_panel.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_dialogs.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_base.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_dash.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_switcher-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_workspace-thumbnails.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_message-list.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_calendar.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_keyboard.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_overview.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_a11y.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_corner-ripple.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_misc.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_scrollbars.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_screen-shield.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_check-box.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_ibus-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_buttons.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_looking-glass.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_screenshot.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_entries.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_switches.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_app-grid.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_search-results.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_osd.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_login-dialog.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_popovers.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/43/gnome-shell-sass/widgets/_hotplug.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/43/gnome-shell-sass/widgets
Installing subdir /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44 to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-on-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-on.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox-off-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-start.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-high-contrast.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/pad-osd.css to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-on-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/dash-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/calendar-today-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/running-indicator.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/workspace-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/calendar-today.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-off-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/toggle-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/process-working.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox-off-focused-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/checkbox.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_common.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_high-contrast-colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_widgets.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/NEWS to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_drawing.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/COPYING to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/gnome-shell-sass.doap to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/_palette.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_window-picker.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_quick-settings.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_notifications.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_search-entry.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_slider.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_workspace-switcher.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_panel.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_dialogs.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_base.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_dash.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_switcher-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_workspace-thumbnails.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_message-list.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_calendar.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_keyboard.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_overview.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_a11y.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_corner-ripple.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_misc.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_scrollbars.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_check-box.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_ibus-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_buttons.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_looking-glass.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_screenshot.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_entries.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_switches.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_app-grid.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_search-results.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_osd.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_login-lock.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_popovers.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/44/gnome-shell-sass/widgets/_hotplug.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/44/gnome-shell-sass/widgets
Installing subdir /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45 to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-on-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-on.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox-off.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox-off-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-light.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-start.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-high-contrast.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/pad-osd.css to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox-focused.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-on-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/dash-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/calendar-today-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/running-indicator.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/workspace-placeholder.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/calendar-today.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-off-hc.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/toggle-off-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/process-working.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-dark.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox-off-focused-light.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/checkbox.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_common.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_high-contrast-colors.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_widgets.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/README.md to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/NEWS to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_drawing.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/COPYING to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/gnome-shell-sass.doap to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/_palette.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_window-picker.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_quick-settings.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_notifications.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_search-entry.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_slider.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_workspace-switcher.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_panel.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_dialogs.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_base.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_dash.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_switcher-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_workspace-thumbnails.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_message-list.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_calendar.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_keyboard.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_overview.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_a11y.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_corner-ripple.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_misc.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_scrollbars.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_check-box.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_ibus-popup.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_buttons.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_looking-glass.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_screenshot.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_entries.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_switches.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_app-grid.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_search-results.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_osd.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_login-lock.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_popovers.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/gnome-shell/45/gnome-shell-sass/widgets/_hotplug.scss to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/shell/45/gnome-shell-sass/widgets
Installing data/com.github.GradienceTeam.Gradience.desktop to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/applications
Installing data/gradience.gresource to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience
Installing data/com.github.GradienceTeam.Gradience.appdata.xml to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/appdata
Installing po/ar/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/ar/LC_MESSAGES
Installing po/cs/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/cs/LC_MESSAGES
Installing po/de/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/de/LC_MESSAGES
Installing po/es/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/es/LC_MESSAGES
Installing po/eu/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/eu/LC_MESSAGES
Installing po/fi/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/fi/LC_MESSAGES
Installing po/fr/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/fr/LC_MESSAGES
Installing po/hr/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/hr/LC_MESSAGES
Installing po/id/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/id/LC_MESSAGES
Installing po/it/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/it/LC_MESSAGES
Installing po/ko/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/ko/LC_MESSAGES
Installing po/nl/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/nl/LC_MESSAGES
Installing po/oc/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/oc/LC_MESSAGES
Installing po/pl/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/pl/LC_MESSAGES
Installing po/pt_BR/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/pt_BR/LC_MESSAGES
Installing po/ru/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/ru/LC_MESSAGES
Installing po/sv/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/sv/LC_MESSAGES
Installing po/ta/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/ta/LC_MESSAGES
Installing po/tr/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/tr/LC_MESSAGES
Installing po/zh_Hans/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/zh_Hans/LC_MESSAGES
Installing po/ro/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/ro/LC_MESSAGES
Installing po/az/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/az/LC_MESSAGES
Installing po/sr/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/sr/LC_MESSAGES
Installing po/uk/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/uk/LC_MESSAGES
Installing po/pt/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/pt/LC_MESSAGES
Installing po/hi/LC_MESSAGES/gradience.mo to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/locale/hi/LC_MESSAGES
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/build/gradience/backend/constants.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/models/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/models/preset.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/models/repo.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/theming/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/theming/monet.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/theming/preset.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/theming/shell.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/colors.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/common.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/gnome.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/gsettings.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/networking.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/subprocess.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/utils/theming.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/css_parser.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/flatpak_overrides.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/globals.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/logger.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/preset_downloader.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/backend/exceptions.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/build/gradience/frontend/gradience to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/bin
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/build/gradience/frontend/cli/gradience-cli to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/bin
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/cli/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/cli
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/dialogs/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/dialogs/app_type_dialog.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/dialogs/save_dialog.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/dialogs/unsupported_shell_dialog.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/schemas/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/schemas/preset_schema.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/schemas/shell_schema.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/utils/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/utils/actions.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/utils/run_async.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/about_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/main_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/no_plugin_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/plugins_list.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/preferences_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/presets_manager_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/share_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/shell_prefs_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/views/welcome_window.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/builtin_preset_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/custom_css_group.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/error_list_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/explore_preset_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/monet_theming_group.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/option_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/palette_shades.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/plugin_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/preset_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/repo_row.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/reset_preset_group.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/shell_theming_group.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/widgets/theming_empty_group.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/frontend/main.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/gradience/__init__.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/build/data/com.github.GradienceTeam.Gradience.gschema.xml to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/glib-2.0/schemas
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/icons/hicolor/scalable/apps/com.github.GradienceTeam.Gradience.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/icons/hicolor/scalable/apps
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/icons/hicolor/symbolic/apps/com.github.GradienceTeam.Gradience-symbolic.svg to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/icons/hicolor/symbolic/apps
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/firefox_gnome_theme.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/firefox_gnome_theme.yapsy-plugin to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/mailspring.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/mailspring.yapsy-plugin to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/qt5ct.py to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Installing /home/daUnknownCoder/.cache/yay/gradience-git/src/Gradience/data/submodules/plugins/qt5ct.yapsy-plugin to /home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/share/gradience/plugins
Skipping custom install script because DESTDIR is set '/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas'
Skipping custom install script because DESTDIR is set '/usr/bin/gtk4-update-icon-cache -q -t -f /usr/share/icons/hicolor'
Skipping custom install script because DESTDIR is set '/usr/bin/update-desktop-database -q /usr/share/applications'
Running custom install script '/usr/bin/python3 /home/daUnknownCoder/.cache/yay/gradience-git/src/build/meson-private/pycompile.py python-3.11-installed.json 1'
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/constants.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/preset.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/repo.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/monet.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/preset.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/shell.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/colors.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/common.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/gnome.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/gsettings.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/networking.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/subprocess.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/theming.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/css_parser.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/flatpak_overrides.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/globals.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/logger.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/preset_downloader.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/exceptions.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/cli/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/app_type_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/save_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/unsupported_shell_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/preset_schema.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/shell_schema.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/actions.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/run_async.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/about_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/main_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/no_plugin_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/plugins_list.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/preferences_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/presets_manager_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/share_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/shell_prefs_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/welcome_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/builtin_preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/custom_css_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/error_list_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/explore_preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/monet_theming_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/option_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/palette_shades.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/plugin_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/repo_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/reset_preset_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/shell_theming_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/theming_empty_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/main.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/constants.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/preset.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/models/repo.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/monet.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/preset.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/theming/shell.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/colors.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/common.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/gnome.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/gsettings.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/networking.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/subprocess.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/utils/theming.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/css_parser.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/flatpak_overrides.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/globals.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/logger.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/preset_downloader.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/backend/exceptions.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/cli/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/app_type_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/save_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/dialogs/unsupported_shell_dialog.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/preset_schema.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/schemas/shell_schema.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/actions.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/utils/run_async.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/about_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/main_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/no_plugin_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/plugins_list.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/preferences_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/presets_manager_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/share_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/shell_prefs_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/views/welcome_window.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/builtin_preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/custom_css_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/error_list_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/explore_preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/monet_theming_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/option_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/palette_shades.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/plugin_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/preset_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/repo_row.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/reset_preset_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/shell_theming_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/widgets/theming_empty_group.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/__init__.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/frontend/main.py'...
Compiling '/home/daUnknownCoder/.cache/yay/gradience-git/pkg/gradience-git/usr/lib/python3.11/site-packages/gradience/__init__.py'...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issues...
==> WARNING: Package contains reference to $srcdir
usr/bin/gradience
==> Creating package "gradience-git"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: gradience-git 0.8.0.beta1.r212.g8b2c37b6-1 (Mon 29 Apr 2024 06:40:50 PM IST)
==> Cleaning up...
==> Making package: python-material-color-utilities 0.1.5-1 (Mon 29 Apr 2024 06:40:51 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found material-color-utilities-python-0.1.5.tar.gz
==> Validating source files with b2sums...
material-color-utilities-python-0.1.5.tar.gz ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Extracting material-color-utilities-python-0.1.5.tar.gz with bsdtar
==> Sources are ready.
==> Making package: python-material-color-utilities 0.1.5-1 (Mon 29 Apr 2024 06:40:54 PM IST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
/usr/bin/python: No module named build
==> ERROR: A failure occurred in build().
Aborting...
-> error making: python-material-color-utilities-exit status 4
loading packages...
warning: gradience-git-0.8.0.beta1.r212.g8b2c37b6-1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...
Packages (1) gradience-git-0.8.0.beta1.r212.g8b2c37b6-1
Total Installed Size: 2.80 MiB
Net Upgrade Size: 0.00 MiB
:: Proceed with installation? [Y/n] y
(1/1) checking keys in keyring [############################################################] 100%
(1/1) checking package integrity [############################################################] 100%
(1/1) loading package files [############################################################] 100%
(1/1) checking for file conflicts [############################################################] 100%
(1/1) checking available disk space [############################################################] 100%
:: Processing package changes...
(1/1) reinstalling gradience-git [############################################################] 100%
Setup Tutorial
For Flatpak Libadwaita applications, you need to override their permissions:
sudo flatpak override --filesystem=xdg-config/gtk-4.0
For Flatpak applications, you need to override their permissions:
sudo flatpak override --filesystem=xdg-config/gtk-3.0
:: Running post-transaction hooks...
(1/4) Arming ConditionNeedsUpdate...
(2/4) Compiling GSettings XML schema files...
(3/4) Updating icon theme caches...
(4/4) Updating the desktop file MIME type cache...
-> Failed to install the following packages. Manual intervention is required:
python-material-color-utilities - exit status 4
python-libsass - exit status 4
python-materialyoucolor-git - exit status 4
[./install.sh]: Command "yay -S --answerclean=a python-materialyoucolor-git gradience-git python-libsass python-material-color-utilities" has failed.
You may need to resolve the problem manually BEFORE repeating this command.
r = Repeat this command (DEFAULT)
e = Exit now
i = Ignore this error and continue (your setup might not work correctly)
[R/e/i]: |
@clsty: Traceback (most recent call last):
File "/home/daUnknownCoder/.config/ags/scripts/color_generation/generate_colors_material.py", line 5, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
Traceback (most recent call last):
File "/usr/bin/gradience-cli", line 58, in <module>
from gradience.backend.theming.monet import Monet
File "/usr/lib/python3.11/site-packages/gradience/backend/theming/monet.py", line 21, in <module>
import material_color_utilities_python as monet
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/__init__.py", line 1, in <module>
from .utils.theme_utils import *
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/utils/theme_utils.py", line 4, in <module>
from .image_utils import *
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/utils/image_utils.py", line 4, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
Error: Undefined variable.
╷
5 │ @if $transparent == True {
│ ^^^^^^^^^^^^
╵
scss/_colors.scss 5:5 @import
scss/main.scss 9:9 root stylesheet
undefined
Gtk.CssProviderError: style.css:9:5Invalid name of pseudo-class |
@UcraNerd Use
@daUnknownCoder Sorry but I refuse to provide any help to someone who gives me a thumb down after my hours spent into the one's problem. |
@clsty don't you think with the 👎 he just meant that it didn't work? |
Sure I know it. But 👎 is absolutely something much more than "not work". |
yo buddy don't take it for anything else than Ok, now to get back on the main issue, @clsty @end-4, it isn't working, for reals, i mean earlier if i used the > ~/.config/ags/scripts/color_generation/switchcolor.sh
Traceback (most recent call last):
File "/home/daUnknownCoder/.config/ags/scripts/color_generation/generate_colors_material.py", line 5, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
Error: Undefined variable.
╷
5 │ @if $transparent == True {
│ ^^^^^^^^^^^^
╵
scss/_colors.scss 5:5 @import
scss/main.scss 9:9 root stylesheet
undefined
Gtk.CssProviderError: style.css:9:5Invalid name of pseudo-class
Traceback (most recent call last):
File "/usr/bin/gradience-cli", line 58, in <module>
from gradience.backend.theming.monet import Monet
File "/usr/lib/python3.11/site-packages/gradience/backend/theming/monet.py", line 21, in <module>
import material_color_utilities_python as monet
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/__init__.py", line 1, in <module>
from .utils.theme_utils import *
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/utils/theme_utils.py", line 4, in <module>
from .image_utils import *
File "/usr/lib/python3.11/site-packages/material_color_utilities_python/utils/image_utils.py", line 4, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
python-pillow 10.3.0-2
python-material-color-utilities 0.1.5-1
python-materialyoucolor-git 2.0.9.r1.g57ec2e4-1
python-materialyoucolor-git-debug 2.0.9.r1.g57ec2e4-1 |
@daUnknownCoder Sorry, I was away from laptop for a couple of days wasn't able to contribute in debug. |
/usr/
/usr/include/
/usr/include/python3.12/
/usr/include/python3.12/Bcn.h
/usr/include/python3.12/Bit.h
/usr/include/python3.12/Convert.h
/usr/include/python3.12/Gif.h
/usr/include/python3.12/ImDib.h
/usr/include/python3.12/ImPlatform.h
/usr/include/python3.12/Imaging.h
/usr/include/python3.12/ImagingUtils.h
/usr/include/python3.12/Jpeg.h
/usr/include/python3.12/Jpeg2K.h
/usr/include/python3.12/QuantHash.h
/usr/include/python3.12/QuantHeap.h
/usr/include/python3.12/QuantOctree.h
/usr/include/python3.12/QuantPngQuant.h
/usr/include/python3.12/QuantTypes.h
/usr/include/python3.12/Raw.h
/usr/include/python3.12/Sgi.h
/usr/include/python3.12/TiffDecode.h
/usr/include/python3.12/ZipCodecs.h
/usr/lib/
/usr/lib/python3.12/
/usr/lib/python3.12/site-packages/
/usr/lib/python3.12/site-packages/PIL/
/usr/lib/python3.12/site-packages/PIL/BdfFontFile.py
/usr/lib/python3.12/site-packages/PIL/BlpImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/BmpImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/BufrStubImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/ContainerIO.py
/usr/lib/python3.12/site-packages/PIL/CurImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/DcxImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/DdsImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/EpsImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/ExifTags.py
/usr/lib/python3.12/site-packages/PIL/FitsImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/FliImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/FontFile.py
/usr/lib/python3.12/site-packages/PIL/FpxImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/FtexImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/GbrImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/GdImageFile.py
/usr/lib/python3.12/site-packages/PIL/GifImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/GimpGradientFile.py
/usr/lib/python3.12/site-packages/PIL/GimpPaletteFile.py
/usr/lib/python3.12/site-packages/PIL/GribStubImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/Hdf5StubImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/IcnsImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/IcoImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/ImImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/Image.py
/usr/lib/python3.12/site-packages/PIL/ImageChops.py
/usr/lib/python3.12/site-packages/PIL/ImageCms.py
/usr/lib/python3.12/site-packages/PIL/ImageColor.py
/usr/lib/python3.12/site-packages/PIL/ImageDraw.py
/usr/lib/python3.12/site-packages/PIL/ImageDraw2.py
/usr/lib/python3.12/site-packages/PIL/ImageEnhance.py
/usr/lib/python3.12/site-packages/PIL/ImageFile.py
/usr/lib/python3.12/site-packages/PIL/ImageFilter.py
/usr/lib/python3.12/site-packages/PIL/ImageFont.py
/usr/lib/python3.12/site-packages/PIL/ImageGrab.py
/usr/lib/python3.12/site-packages/PIL/ImageMath.py
/usr/lib/python3.12/site-packages/PIL/ImageMode.py
/usr/lib/python3.12/site-packages/PIL/ImageMorph.py
/usr/lib/python3.12/site-packages/PIL/ImageOps.py
/usr/lib/python3.12/site-packages/PIL/ImagePalette.py
/usr/lib/python3.12/site-packages/PIL/ImagePath.py
/usr/lib/python3.12/site-packages/PIL/ImageQt.py
/usr/lib/python3.12/site-packages/PIL/ImageSequence.py
/usr/lib/python3.12/site-packages/PIL/ImageShow.py
/usr/lib/python3.12/site-packages/PIL/ImageStat.py
/usr/lib/python3.12/site-packages/PIL/ImageTk.py
/usr/lib/python3.12/site-packages/PIL/ImageTransform.py
/usr/lib/python3.12/site-packages/PIL/ImageWin.py
/usr/lib/python3.12/site-packages/PIL/ImtImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/IptcImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/Jpeg2KImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/JpegImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/JpegPresets.py
/usr/lib/python3.12/site-packages/PIL/McIdasImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/MicImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/MpegImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/MpoImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/MspImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PSDraw.py
/usr/lib/python3.12/site-packages/PIL/PaletteFile.py
/usr/lib/python3.12/site-packages/PIL/PalmImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PcdImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PcfFontFile.py
/usr/lib/python3.12/site-packages/PIL/PcxImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PdfImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PdfParser.py
/usr/lib/python3.12/site-packages/PIL/PixarImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PngImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PpmImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PsdImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/PyAccess.py
/usr/lib/python3.12/site-packages/PIL/QoiImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/SgiImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/SpiderImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/SunImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/TarIO.py
/usr/lib/python3.12/site-packages/PIL/TgaImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/TiffImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/TiffTags.py
/usr/lib/python3.12/site-packages/PIL/WalImageFile.py
/usr/lib/python3.12/site-packages/PIL/WebPImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/WmfImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/XVThumbImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/XbmImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/XpmImagePlugin.py
/usr/lib/python3.12/site-packages/PIL/__init__.py
/usr/lib/python3.12/site-packages/PIL/__main__.py
/usr/lib/python3.12/site-packages/PIL/__pycache__/
/usr/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PyAccess.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/PyAccess.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc
/usr/lib/python3.12/site-packages/PIL/_binary.py
/usr/lib/python3.12/site-packages/PIL/_deprecate.py
/usr/lib/python3.12/site-packages/PIL/_imaging.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_imaging.pyi
/usr/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_imagingcms.pyi
/usr/lib/python3.12/site-packages/PIL/_imagingft.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_imagingft.pyi
/usr/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_imagingmath.pyi
/usr/lib/python3.12/site-packages/PIL/_imagingmorph.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_imagingmorph.pyi
/usr/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_tkinter_finder.py
/usr/lib/python3.12/site-packages/PIL/_typing.py
/usr/lib/python3.12/site-packages/PIL/_util.py
/usr/lib/python3.12/site-packages/PIL/_version.py
/usr/lib/python3.12/site-packages/PIL/_webp.cpython-312-x86_64-linux-gnu.so
/usr/lib/python3.12/site-packages/PIL/_webp.pyi
/usr/lib/python3.12/site-packages/PIL/features.py
/usr/lib/python3.12/site-packages/PIL/py.typed
/usr/lib/python3.12/site-packages/PIL/report.py
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/LICENSE
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/METADATA
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/RECORD
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/WHEEL
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/top_level.txt
/usr/lib/python3.12/site-packages/pillow-10.3.0.dist-info/zip-safe
/usr/share/
/usr/share/licenses/
/usr/share/licenses/python-pillow/
/usr/share/licenses/python-pillow/LICENSE |
How about we use the non -git one? I don't really need new features, and it works for me without having to cleanbuild |
I tried it. Seems ok on my PC. |
@daUnknownCoder |
I've had the same problem, some images work and others not, after a while I realize the problem happend only with images that has an space in the name, for ex: "my image.png" would couse an error, but not "myimage.png". |
ohhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh |
@clsty can we change gradience to non -git one? I'd change it myself but after the PR that introduced a bunch of pkgbuilds I'm unsure |
hey @end-4, gradience package was removed from |
It's ok, but considering that the two packages may conflict with each other, add this line before installing the # Try to force uninstall gradience-git
try sudo pacman -Rdd gradience-git |
Today, If you didn't already know, on arch linux, I had issues with both gradience and gradience-git (both clean built), so I found out that a dependecy (imp) broke the app; a comment on github witch suggested to install reference: GradienceTeam/Gradience#890 |
is there any fix for this rn? I've read the whole discussion, tried everything I read and still my material color (the one of the top bar) is not changing... I did a fresh install of the rice yesterday. |
try toggling transparency in the image menu and change the file name to a single line without spaces... anyways, im not having this issue anymore so ill be closing it, big thanks to void @end-4 and cisty @clsty ... ❤️ |
The issue
When i change wallpapers with
Ctrl+Super+T
, the wallpaper changes but the color generation messes upColor Generation log, stacktrace file:
cat /home/daUnknownCoder/.cache/ags/user/generated/style.css
Kooha-2024-04-19-13-04-15.mp4
and see in the video, the generated colors are pink and the warm tones, the wallpaper is blue and cool toned...
The text was updated successfully, but these errors were encountered: