doc: refresh screenshots (#382)
This commit is contained in:
parent
f9bf97645b
commit
23cbb96638
5 changed files with 27 additions and 14 deletions
27
README.md
27
README.md
|
|
@ -40,20 +40,23 @@ or ask on [GitHub Discussions](https://github.com/danth/stylix/discussions).
|
||||||
|
|
||||||
## Example configurations
|
## Example configurations
|
||||||
|
|
||||||

|
### GNOME 46
|
||||||
|
|
||||||
| Environment | Wallpaper | Colour scheme | Fonts | Full configuration |
|

|
||||||
|-------------|-----------------------------------------------------------------------------------------|---------------------|----------------------|----------------------------------------------------------------------------|
|
|
||||||
| GNOME 44 | [Atlantis Garbage Worker by Grady Frederick](https://www.artstation.com/artwork/W2GERJ) | Generated by Stylix | Cantarell, Fira Code | [See here](https://gist.github.com/danth/5e0b263eeed99aafcef2a2eca3e8548d) |
|
|
||||||
|
|
||||||

|
Photos by [Clay Banks](https://unsplash.com/photos/three-bicycles-parked-in-front-of-building-hwLAI5lRhdM)
|
||||||
|
and [Derrick Cooper](https://unsplash.com/photos/brown-road-in-forest-during-daytime-L505cPnmIds).
|
||||||
|
|
||||||
| Environment | Wallpaper | Colour scheme | Fonts | Full configuration |
|
Try a live demo of this theme by running
|
||||||
|--------------|---------------------------------------------------------------|---------------------|----------------------|----------------------------------------------------------------------------|
|
`nix run github:danth/stylix#testbed-gnome-light` or
|
||||||
| KDE Plasma 5 | Taken from [Genshin Impact](https://genshin.hoyoverse.com/en) | Generated by Stylix | Cantarell, Fira Code | [See here](https://gist.github.com/danth/17dd596a9f655a252c14b23a60dd2aaf) |
|
`nix run github:danth/stylix#testbed-gnome-dark`.
|
||||||
|
|
||||||

|
### KDE Plasma 6
|
||||||
|
|
||||||
| Environment | Wallpaper | Colour scheme | Fonts | Full configuration |
|

|
||||||
|-------------|-----------------------------------------------------------------------------------------|---------------------|----------------------|-----------------------------------------------------|
|
|
||||||
| Hyprland | Taken from [raison d'etre by Eve](https://www.youtube.com/watch?v=ulfY8WQE_HE) | Generated by Stylix | DeJavu | [See here](https://github.com/SomeGuyNamedMy/users) |
|
Photos by [Aniket Deole](https://unsplash.com/photos/mountain-surrounded-by-trees-under-cloudy-sky-T-tOgjWZ0fQ)
|
||||||
|
and [Tom Gainor](https://unsplash.com/photos/landscape-photography-of-body-of-water-overlooking-mountain-range-ZqLeQDjY6fY).
|
||||||
|
|
||||||
|
KDE theming is still a work in progress - so some manual steps may be needed
|
||||||
|
to apply the settings completely.
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,8 @@ in pkgs.stdenvNoCC.mkDerivation {
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
cp ${../README.md} src/README.md
|
cp ${../README.md} src/README.md
|
||||||
|
cp ${../gnome.png} src/gnome.png
|
||||||
|
cp ${../kde.png} src/kde.png
|
||||||
cp ${../CONTRIBUTING.md} src/contributing.md
|
cp ${../CONTRIBUTING.md} src/contributing.md
|
||||||
|
|
||||||
# The "declared by" links point to a file which only exists when the docs
|
# The "declared by" links point to a file which only exists when the docs
|
||||||
|
|
|
||||||
BIN
gnome.png
Normal file
BIN
gnome.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 996 KiB |
BIN
kde.png
Normal file
BIN
kde.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 853 KiB |
|
|
@ -82,12 +82,20 @@ let
|
||||||
# This generates a copy of each testbed for each of the following themes.
|
# This generates a copy of each testbed for each of the following themes.
|
||||||
makeTestbeds = testbed: map (makeTestbed testbed) [
|
makeTestbeds = testbed: map (makeTestbed testbed) [
|
||||||
{
|
{
|
||||||
image = "${pkgs.pantheon.elementary-wallpapers}/share/backgrounds/Photo of Valley.jpg";
|
image = pkgs.fetchurl {
|
||||||
|
name = "three-bicycles.jpg";
|
||||||
|
url = "https://unsplash.com/photos/hwLAI5lRhdM/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzE2MzYxNDcwfA&force=true";
|
||||||
|
hash = "sha256-S0MumuBGJulUekoGI2oZfUa/50Jw0ZzkqDDu1nRkFUA=";
|
||||||
|
};
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-latte.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-latte.yaml";
|
||||||
polarity = "light";
|
polarity = "light";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
image = "${pkgs.pantheon.elementary-wallpapers}/share/backgrounds/Snow-Capped Mountain.jpg";
|
image = pkgs.fetchurl {
|
||||||
|
name = "mountains.jpg";
|
||||||
|
url = "https://unsplash.com/photos/ZqLeQDjY6fY/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzE2MzY1NDY4fA&force=true";
|
||||||
|
hash = "sha256-Dm/0nKiTFOzNtSiARnVg7zM0J1o+EuIdUQ3OAuasM58=";
|
||||||
|
};
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml";
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue