ShellCode
ShellCode
> I have no idea how it is installed or the package name even That's exactly the reason why I stopped using these kind of pre-built all-in-one distros :smile: Most...
``` sudo pacman -S sassc inkscape ``` You might also want to install `gtk3-demos` and `gtk4-demos` to have access to the test programs `gtk3-widget-factory` and `gtk4-widget-factory` that will allow you...
Looks like you got hit by [this bug](https://gitlab.com/inkscape/inkscape/-/issues/4716), I didn't have it so you are kind of on your own here. On the GitLab issue someone mentioned: > You can...
You should not copy this folder. This command already does that for you: `meson setup --prefix=$HOME/.local -Dthemes=gtk3,gtk4 -Dvariants=dark build/` (you only have to run it once, then you should only...
Well as I said in my previous post, and as mason is clearly stating in its output: ``` Directory already configured. ``` > (you only have to run it once,...
Nice, happy theming ! ;) One more thing that will save you some time I believe, if you want to replace a color with another **everywhere**, you can use the...
The left value is the one that will apply if the boolean expression on the left is true. In that case it checks for light vs dark theme. If a...
For the dark theme you want to change the `#cc575d` color everywhere, you can basically run the following command at the root of the repo: ``` grep -ril '#cc575d' |...