Add maim and formalize kutu config

This commit is contained in:
2026-07-08 05:27:13 +01:00
parent 95936a2e88
commit 5923a7ea32
7 changed files with 17 additions and 4 deletions
+4 -2
View File
@@ -1,7 +1,9 @@
run "bash @src@/startup.sh"
bind_key 23, true, "firefox"
bind_key 24, true, :kill_window
bind_key 25, true, "kitty"
bind_key 26, true, "bash /home/me/dotfiles/scripts/power.sh"
bind_key 26, true, "bash @src@/power.sh"
bind_key 123, false, %q(
pactl set-sink-volume @DEFAULT_SINK@ +5%;
@@ -44,7 +46,7 @@ bind_key 54, true, 'kitty -e fish -c "y"'
bind_key 53, true, 'kitty -e fish -c "editor"'
bind_key 41, true, 'kitty -e fish -c "btop"'
bind_key 40, true, "bash /home/me/dotfiles/scripts/run.sh"
bind_key 40, true, "bash @src@/run.sh"
bind_key 56, true, :add_workspace
bind_key 57, true, :delete_workspace
+10 -2
View File
@@ -1,5 +1,13 @@
{ ... }:
{ pkgs, ... }:
let
script = pkgs.substitute {
src = ./config.rb;
substitutions = [
"--replace-fail" "@src@" "${./scripts}"
];
};
in
{
home.file.".config/kutu/config.rb".source = ./config.rb;
home.file.".config/kutu/config.rb".source = script;
}
+3
View File
@@ -35,6 +35,9 @@
dmenu
pulseaudio
brightnessctl
maim
xclip
xsel
inputs.kutu.packages.${stdenv.hostPlatform.system}.default
]);