From c17a09d3fc4518a725a0100297f5d37356c2904a Mon Sep 17 00:00:00 2001 From: Akina Date: Thu, 30 Apr 2026 16:46:03 +0900 Subject: [PATCH] breaking: use rofi to run apps, use kitty as default terminal --- config.kdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.kdl b/config.kdl index ee4051c..f88013c 100644 --- a/config.kdl +++ b/config.kdl @@ -363,8 +363,8 @@ binds { Mod+Shift+Slash { show-hotkey-overlay; } // Suggested binds for running programs: terminal, app launcher, screen locker. - Mod+T hotkey-overlay-title="Open a Terminal: alacritty" { spawn "alacritty"; } - Mod+D hotkey-overlay-title="Run an Application: fuzzel" { spawn "fuzzel"; } + Mod+T hotkey-overlay-title="Open a Terminal: kitty" { spawn "kitty"; } + Mod+D hotkey-overlay-title="Run an Application: rofi" { spawn-sh "rofi -show drun"; } Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; } // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.