From 9613179b0200bf7ac5cb36d692fcbe7627b0ecfa Mon Sep 17 00:00:00 2001 From: Robin Date: Sat, 23 Aug 2025 00:59:53 +0200 Subject: [PATCH] removed the arrow keys from resizing because of it not being used --- .config/hypr/hyprland.conf | 18 ++++-------------- .config/wofi/style.css | 8 ++++---- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index d301049..84c34c1 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -136,25 +136,15 @@ bindm = $mainMod, mouse:273, resizewindow submap=resize # sets repeatable binds for resizing the active window -binde=,right,resizeactive,10 0 -binde=,left,resizeactive,-10 0 -binde=,up,resizeactive,0 -10 -binde=,down,resizeactive,0 10 - -binde=SHIFT,right,resizeactive,40 0 -binde=SHIFT,left,resizeactive,-40 0 -binde=SHIFT,up,resizeactive,0 -40 -binde=SHIFT,down,resizeactive,0 40 - binde=,l,resizeactive,10 0 binde=,h,resizeactive,-10 0 binde=,j,resizeactive,0 -10 binde=,k,resizeactive,0 10 -binde=SHIFT,l,resizeactive,40 0 -binde=SHIFT,h,resizeactive,-40 0 -binde=SHIFT,j,resizeactive,0 -40 -binde=SHIFT,k,resizeactive,0 40 +binde=SHIFT,l,resizeactive,50 0 +binde=SHIFT,h,resizeactive,-50 0 +binde=SHIFT,j,resizeactive,0 -50 +binde=SHIFT,k,resizeactive,0 50 # use reset to go back to the global submap bind=,Q,submap,reset diff --git a/.config/wofi/style.css b/.config/wofi/style.css index d3e36a8..e4a74f0 100755 --- a/.config/wofi/style.css +++ b/.config/wofi/style.css @@ -1,4 +1,4 @@ -@import url('../../.config/wal/colors-waybar.css'); +@import url('.config/wal/colors-waybar.css'); @define-color mauve @color4; @define-color red @color5; @@ -18,7 +18,7 @@ outline: none; border: none; text-shadow:none; - background-color: @background; + background-color: transparent; } window { @@ -55,7 +55,7 @@ window { } #input image { border: none; - color: @red; + color: @mauve; padding-right:10px; } #input * { @@ -101,5 +101,5 @@ window { color: @mauve; } #entry:drop(active) { - background-color: @lavender !important; + background-color: @lavender; }