This commit is contained in:
Hadi
2024-06-17 20:37:09 +02:00
parent b49b2d2c60
commit 6f8698e345
10 changed files with 73 additions and 6 deletions

View File

@@ -9,3 +9,17 @@ You can change the selected theme by changing the import statement at the top of
Create a copy of one of the existing theme and change the variables.
Wallpapers are loaded from the `home/wallpapers` folder.
## Gallery
### Nixy
![nixy1](docs/src/nixy/1.png)
![nixy2](docs/src/nixy/2.png)
![nixy3](docs/src/nixy/3.png)
### Catppuccin
![catppuccin1](docs/src/catppuccin/1.png)
![catppuccin2](docs/src/catppuccin/2.png)
![catppuccin3](docs/src/catppuccin/3.png)

View File

@@ -4,6 +4,6 @@
[[ -d "./docs" ]] || (echo "Folder ./docs not found" && exit 1)
for file in ./docs/src/*.png; do
for file in ./docs/src/*/*.png; do
optipng "$file"
done

View File

@@ -1,6 +1,7 @@
#!/usr/bin/env bash
theme_name="nixy"
[ "$1" = "" ] && echo "Usage: $0 <theme_name>" && exit 1
theme_name=$1
# Switch to workspace 1
sleep 2