From e8313cb6bcb2718d4c960fbe350e490ba15cb0a3 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 25 Jul 2025 19:45:52 -0500 Subject: Add group binds to hyprland --- hypr/hyprland.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index f3a9393..740a50e 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -253,6 +253,12 @@ bind = $mainMod+SHIFT, R, layoutmsg, colresize +conf #HYPRSCROLLING bind = $mainMod+SHIFT, Return, layoutmsg, promote #HYPRSCROLLING #}}} +#{{{ tab binds +bind = $mainMod+ALT, O, togglegroup +bind = $mainMod+ALT, J, changegroupactive, f +bind = $mainMod+ALT, K, changegroupactive, b +#}}} + #{{{ Group binds # Group binds #bind = $mainMod CONTROL, G, togglegroup, -- cgit v1.2.3 From 6b2673b4c82fbec53ad2960058b23c1690ea479b Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 25 Jul 2025 19:46:12 -0500 Subject: Use US keyboard with caps->escape in niri --- niri/config.kdl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/niri/config.kdl b/niri/config.kdl index 9971a8d..1a826c6 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -15,6 +15,8 @@ input { // For example: // layout "us,ru" // options "grp:win_space_toggle,compose:ralt,ctrl:nocaps" + layout "us" + options "escape:nocaps" } // Enable numlock on startup, omitting this setting disables it. -- cgit v1.2.3 From 1f2b7e8a90d5987b0b3b1ac3fefb24efe2367e24 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 25 Jul 2025 19:47:35 -0500 Subject: Add all displays in Niri, but don't configure any for master --- niri/config.kdl | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/niri/config.kdl b/niri/config.kdl index 1a826c6..b83e4b4 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -71,9 +71,9 @@ input { // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Outputs // Remember to uncomment the node by removing "/-"! -output "eDP-1" { +/-output "eDP-1" { // Uncomment this line to disable this output. - // off + //off // Resolution and, optionally, refresh rate of the output. // The format is "x" or "x@". @@ -102,6 +102,20 @@ output "eDP-1" { position x=0 y=0 } +/-output "DP-2" { + mode "1920x1080@75.000" + scale 1 + transform "normal" + position x=0 y=0 +} + +/-output "HDMI-A-1" { + mode "1920x1080@75.000" + scale 1 + transform "normal" + position x=1920 y=0 +} + // Settings that influence how windows are positioned and sized. // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Layout -- cgit v1.2.3 From da0ed5c9fc1f509843711bbadff47e7180ff15bd Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 25 Jul 2025 19:49:57 -0500 Subject: Set unused niri border colors too --- niri/config.kdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/niri/config.kdl b/niri/config.kdl index b83e4b4..cab419f 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -205,8 +205,8 @@ layout { off width 4 - active-color "#ffc87f" - inactive-color "#505050" + active-color "#198844" + inactive-color "#1b1d1c" // Color of the border around windows that request your attention. urgent-color "#9b0000" -- cgit v1.2.3 From eb561e1c22629a3df4ac69e458c37330bd806fc5 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 25 Jul 2025 19:51:31 -0500 Subject: Update zinit calls --- zsh/.zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 4ca4d31..d6e7718 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -120,5 +120,6 @@ bindkey -M vicmd "k" history-substring-search-up bindkey -M vicmd "j" history-substring-search-down #source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -zinit light zsh-users/zsh-syntax-highlighting +zinit light 'zsh-users/zsh-syntax-highlighting' +zinit ice wait atload'_history_substring_search_config' #zprof -- cgit v1.2.3