From bd89f8498e8a22a13fec71e74c680a40ce159b1e Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Mon, 25 Nov 2024 00:02:08 +0100 Subject: [PATCH 1/3] feat: update wallpaper --- home/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/config b/home/config index b379fba..c77a6b7 100644 --- a/home/config +++ b/home/config @@ -19,7 +19,7 @@ set $menu dmenu_path | wmenu | xargs swaymsg exec -- ### Output configuration # # Default wallpaper (more resolutions are available in /run/current-system/sw/share/backgrounds/sway/) -output * bg ~/lib/pictures/camera/Camera/PXL_20240302_142813383.jpg fill +output * bg ~/tmp/51761494940_7f9d6ab0e3_o.jpg fill ### Idle configuration # From 71de97484728331ec3eb0f1f6d2ca57f69b7bbf3 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Mon, 25 Nov 2024 00:02:41 +0100 Subject: [PATCH 2/3] fix: disable shared shell history There is some bug preventing the fzf history selection from the widget to be pasted. --- home/modules/zsh.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/modules/zsh.nix b/home/modules/zsh.nix index 58cef5b..ab51e59 100644 --- a/home/modules/zsh.nix +++ b/home/modules/zsh.nix @@ -26,7 +26,9 @@ in ignoreDups = true; ignoreSpace = true; save = 100000; - share = true; + # FIXME https://github.com/junegunn/fzf/issues/4061 + #share = true; + share = false; }; plugins = [ ]; From cf26daecee2d42c9ac9b473bc8d7736997cb0743 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Mon, 25 Nov 2024 00:03:44 +0100 Subject: [PATCH 3/3] fix: actually start kanshi --- nixos/gorgon/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/gorgon/configuration.nix b/nixos/gorgon/configuration.nix index 3b5a8e9..85bb03d 100644 --- a/nixos/gorgon/configuration.nix +++ b/nixos/gorgon/configuration.nix @@ -225,6 +225,7 @@ in }; }; systemd.user.services.kanshi = { + enable = true; description = "kanshi daemon"; environment = { WAYLAND_DISPLAY = "wayland-1";