diff --git a/hypr/.config/hypr/hyprland-gui.lua b/hypr/.config/hypr/hyprland-gui.lua index e69de29..2fcf532 100644 --- a/hypr/.config/hypr/hyprland-gui.lua +++ b/hypr/.config/hypr/hyprland-gui.lua @@ -0,0 +1,12 @@ +-- Generated by HyprMod + +-- Settings +hl.config({ + general = { + border_size = 5, + col = { + active_border = "0xcbe0e89b", + inactive_border = "0xff0e0543", + }, + }, +}) diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index b885472..417fbbd 100644 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -301,15 +301,11 @@ bind = $mainMod, V, togglefloating, bind = $mainMod, SPACE, exec, $menu bind = $mainMod SHIFT, SPACE, exec, nwg-drawer bind = $mainMod, P, pseudo, # dwindle -bind = $mainMod, J, layoutmsg, togglesplit # dwindle +bind = $mainMod SHIFT, J, layoutmsg, togglesplit # dwindle bind = $mainMod, I, exec, firefox & bind = $mainMod, n, exec, ~/.local/bin/hyprltm-net # Move focus with mainMod + WASD or Vim-style -bind = $mainMod, a, movefocus, l -bind = $mainMod, d, movefocus, r -bind = $mainMod, w, movefocus, u -bind = $mainMod, s, movefocus, d bind = $mainMod, h, movefocus, l bind = $mainMod, l, movefocus, r bind = $mainMod, k, movefocus, u diff --git a/hypr/.config/hypr/hyprland.lua b/hypr/.config/hypr/hyprland.lua index 8dc388b..1321c29 100644 --- a/hypr/.config/hypr/hyprland.lua +++ b/hypr/.config/hypr/hyprland.lua @@ -475,7 +475,7 @@ hl.bind(var_mainMod .. " + V", hl.dsp.window.float({ action = "toggle" })) hl.bind(var_mainMod .. " + SPACE", hl.dsp.exec_cmd(var_menu)) hl.bind(var_mainMod .. " + SHIFT + SPACE", hl.dsp.exec_cmd("nwg-drawer")) hl.bind(var_mainMod .. " + P", hl.dsp.window.pseudo()) -hl.bind(var_mainMod .. " + J", hl.dsp.layout("togglesplit")) +hl.bind(var_mainMod .. " + SHIFT + J", hl.dsp.layout("togglesplit")) hl.bind(var_mainMod .. " + I", hl.dsp.exec_cmd("firefox &")) hl.bind(var_mainMod .. " + n", hl.dsp.exec_cmd("~/.local/bin/hyprltm-net"))