diff --git a/README.md b/README.md index ee901a0..ae84b6a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ In case you are not familiar with nix/nixos, this is a collection of configuration files which build all my systems in a declarative manner. The tool used to configure the global system is called [nixos](https://nixos.org/), and the one used to configure the individual users is called [home-manager](https://github.com/nix-community/home-manager). +> A [visual history](./history.md) of my setup is in the work! + ## Features this repository includes: - Consistent base16 theming using [stylix](https://github.com/danth/stylix) diff --git a/common/themes/default.nix b/common/themes/default.nix index d99330b..506271b 100644 --- a/common/themes/default.nix +++ b/common/themes/default.nix @@ -25,7 +25,7 @@ let catppuccin-macchiato = { stylix = { - image = ./wallpapers/nix-catppuccin.png; + image = ./wallpapers/lapis_lazuli.jpg; base16Scheme = "${inputs.catppuccin-base16}/base16/macchiato.yaml"; polarity = "dark"; }; @@ -85,7 +85,7 @@ let }; # Select your current theme here! - currentTheme = themes.catppuccin-latte; + currentTheme = themes.catppuccin-macchiato; in { # We apply the current theme here. diff --git a/common/themes/wallpapers/lapis_lazuli.jpg b/common/themes/wallpapers/lapis_lazuli.jpg new file mode 100644 index 0000000..928a963 Binary files /dev/null and b/common/themes/wallpapers/lapis_lazuli.jpg differ diff --git a/dotfiles/neovim/lua/my/plugins/mini-files.lua b/dotfiles/neovim/lua/my/plugins/mini-files.lua index 0a4504d..5dd04f5 100644 --- a/dotfiles/neovim/lua/my/plugins/mini-files.lua +++ b/dotfiles/neovim/lua/my/plugins/mini-files.lua @@ -16,7 +16,7 @@ function M.config() preview = false, }, mappings = { - go_in_plus = "", + go_in_plus = "l", }, }) diff --git a/history.md b/history.md new file mode 100644 index 0000000..8b126ac --- /dev/null +++ b/history.md @@ -0,0 +1,9 @@ +# The history of the satellite + +This file tells the story of my setup throughout it's history. This document is not yet complete, and much more will get added as I dig old pictures up. Sadly, a lot of my early days on linux were lost to time (not having a good reasons to simply take pictures of my desktop back in the KDE days and all) + +## 2023-11-08 + +![Neovim](img/2023-11-08-neovim.png) +![Neovim, zathura and anyrun](img/2023-11-08-neovim-zathura-and-anyrun.png) +![Poweroff screen](img/2023-11-08-poweroff.png) diff --git a/home/features/wayland/hyprland/hyprland.conf b/home/features/wayland/hyprland/hyprland.conf index 7d8f957..6a0d217 100644 --- a/home/features/wayland/hyprland/hyprland.conf +++ b/home/features/wayland/hyprland/hyprland.conf @@ -16,12 +16,12 @@ decoration { blur { enabled = true ignore_opacity = true - size = 10 - passes = 3 - contrast = 1 - brightness = 1.2 - noise = 0.05 xray = true + size = 10 + passes = 4 + contrast = 1.2 + brightness = 1.1 + noise = 0.05 } } diff --git a/img/2023-11-08-neovim-zathura-and-anyrun.png b/img/2023-11-08-neovim-zathura-and-anyrun.png new file mode 100644 index 0000000..7b3362a Binary files /dev/null and b/img/2023-11-08-neovim-zathura-and-anyrun.png differ diff --git a/img/2023-11-08-neovim.png b/img/2023-11-08-neovim.png new file mode 100644 index 0000000..ecc1ce5 Binary files /dev/null and b/img/2023-11-08-neovim.png differ diff --git a/img/2023-11-08-poweroff.png b/img/2023-11-08-poweroff.png new file mode 100644 index 0000000..0ba9f71 Binary files /dev/null and b/img/2023-11-08-poweroff.png differ