From 67525324f069bfbd214171ebd414dcf6fbfa8df0 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 9 Mar 2026 14:43:09 -0700 Subject: [PATCH 1/3] added rofi back --- .config/niri/config.kdl | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.config/niri/config.kdl b/.config/niri/config.kdl index c08fb1a..803bad3 100644 --- a/.config/niri/config.kdl +++ b/.config/niri/config.kdl @@ -376,13 +376,15 @@ binds { // Suggested binds for running programs: terminal, app launcher, screen locker. Mod+Return hotkey-overlay-title="Open a Terminal: alacritty" { spawn "alacritty"; } - Mod+D hotkey-overlay-title="Run an Application: fuzzel" { spawn "fuzzel"; } + Mod+D hotkey-overlay-title="Run an Application: rofi" { spawn "~/.config/rofi/launchers/type-7/launcher.sh"; } 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. // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`. // For example, this is a standard bind to toggle the screen reader (orca). - Super+Alt+S allow-when-locked=true hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; } + // Super+Alt+S allow-when-locked=true hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; } + Mod+Shift+E allow-when-locked=false hotkey-overlay-title=null { spawn-sh "~/.local/bin/emoji_insert.sh"; } + // Super+Alt+S allow-when-locked=true hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; } // Example volume keys mappings for PipeWire & WirePlumber. // The allow-when-locked=true property makes them work even when the session is locked. @@ -596,7 +598,7 @@ binds { // Mod+Space { switch-layout "next"; } // Mod+Shift+Space { switch-layout "prev"; } - Print { screenshot; } + Alt+P { screenshot; } Ctrl+Print { screenshot-screen; } Alt+Print { screenshot-window; } @@ -611,8 +613,8 @@ binds { Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; } // The quit action will show a confirmation dialog to avoid accidental exits. - Mod+Shift+E { quit; } - Ctrl+Alt+Delete { quit; } + // Mod+Shift+E { quit; } + // Ctrl+Alt+Delete { quit; } // Powers off the monitors. To turn them back on, do any input like // moving the mouse or pressing any other key. From 37d4dd8a0bd956bc744fabd34102eaf4d9bb848b Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 9 Mar 2026 14:45:58 -0700 Subject: [PATCH 2/3] updated gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e13c8d4..af3dc93 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ lazy-lock.json flycheck-packages.el *.log .config/zsh/.zcompdump +.local/bin/claude From a8dd455576a3e3498e65acb0ba2488c9d53f6190 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 9 Mar 2026 18:32:22 -0700 Subject: [PATCH 3/3] changed lock --- .config/niri/config.kdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/niri/config.kdl b/.config/niri/config.kdl index 803bad3..da7ab85 100644 --- a/.config/niri/config.kdl +++ b/.config/niri/config.kdl @@ -377,7 +377,7 @@ binds { // Suggested binds for running programs: terminal, app launcher, screen locker. Mod+Return hotkey-overlay-title="Open a Terminal: alacritty" { spawn "alacritty"; } Mod+D hotkey-overlay-title="Run an Application: rofi" { spawn "~/.config/rofi/launchers/type-7/launcher.sh"; } - Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; } + Ctrl+Shift+L hotkey-overlay-title="Lock the Screen" { spawn "dms" "ipc" "call" "lock" "lock"; } // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc. // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.