Compare commits

...

3 commits

Author SHA1 Message Date
cf26daecee
fix: actually start kanshi
Some checks failed
Continuous Integration / Checks (push) Has been cancelled
2024-11-25 00:03:44 +01:00
71de974847
fix: disable shared shell history
There is some bug preventing the fzf history selection from the widget
to be pasted.
2024-11-25 00:02:41 +01:00
bd89f8498e
feat: update wallpaper 2024-11-25 00:02:08 +01:00
3 changed files with 5 additions and 2 deletions

View file

@ -19,7 +19,7 @@ set $menu dmenu_path | wmenu | xargs swaymsg exec --
### Output configuration ### Output configuration
# #
# Default wallpaper (more resolutions are available in /run/current-system/sw/share/backgrounds/sway/) # 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 ### Idle configuration
# #

View file

@ -26,7 +26,9 @@ in
ignoreDups = true; ignoreDups = true;
ignoreSpace = true; ignoreSpace = true;
save = 100000; save = 100000;
share = true; # FIXME https://github.com/junegunn/fzf/issues/4061
#share = true;
share = false;
}; };
plugins = [ plugins = [
]; ];

View file

@ -225,6 +225,7 @@ in
}; };
}; };
systemd.user.services.kanshi = { systemd.user.services.kanshi = {
enable = true;
description = "kanshi daemon"; description = "kanshi daemon";
environment = { environment = {
WAYLAND_DISPLAY = "wayland-1"; WAYLAND_DISPLAY = "wayland-1";