From a1197255ddb1bb14a03e149219bd38d3f95aa382 Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 30 Jul 2025 13:13:46 -0500 Subject: Now that waybar has transparency, blur it in Hypr --- hypr/hyprland.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 0547c21..e1b0b12 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -210,6 +210,10 @@ windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\ windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ #}}} +#{{{ Layerrules +layerrule = blur, waybar +#}}} + #{{{ Mods # See https://wiki.hyprland.org/Configuring/Keywords/ for more $mainMod = SUPER -- cgit v1.2.3 From 8e6be2d08c41f9feac75f3e6af41adeb15217de6 Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 30 Jul 2025 14:13:39 -0500 Subject: Rename scratchpad.lua var to is_in_scratchpad --- scroll/scripts/scratchpad.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scroll/scripts/scratchpad.lua b/scroll/scripts/scratchpad.lua index e581cc1..0afaa97 100644 --- a/scroll/scripts/scratchpad.lua +++ b/scroll/scripts/scratchpad.lua @@ -24,18 +24,18 @@ end command = command or "kitty" local function exists(id) - local is_in_array = false + local is_in_scratchpad = false local cons = scroll.scratchpad_get_containers() for _, con in ipairs(cons) do local views = scroll.container_get_views(con) for _, view in ipairs(views) do local app_id = scroll.view_get_app_id(view) if (app_id == id) then - is_in_array = true + is_in_scratchpad = true end end end - return is_in_array + return is_in_scratchpad end local function is_focused(id) -- cgit v1.2.3 From 124f93a3d832decaaabf9e9a6727833ff31ce55c Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 30 Jul 2025 14:19:52 -0500 Subject: Unmap button8 in scroll --- scroll/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scroll/config b/scroll/config index 889da2e..c6bb704 100644 --- a/scroll/config +++ b/scroll/config @@ -230,7 +230,7 @@ animations { # Overview bindsym --no-repeat $mod+tab scale_workspace overview - bindsym --whole-window button8 scale_workspace overview + #bindsym --whole-window button8 scale_workspace overview # Jump # jump_labels_color #9e1530FF -- cgit v1.2.3 From 5f450160fa40b23c37f2fdd74f993092274747b5 Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 30 Jul 2025 14:25:19 -0500 Subject: Use Papirus Dark, not ePapirus Dark --- gtk-2.0/gtkrc | 2 +- gtk-3.0/settings.ini | 2 +- xsettingsd/xsettingsd.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk-2.0/gtkrc b/gtk-2.0/gtkrc index f569e9b..42f1844 100644 --- a/gtk-2.0/gtkrc +++ b/gtk-2.0/gtkrc @@ -3,7 +3,7 @@ include "/home/zachir/.gtkrc-2.0.mine" gtk-theme-name="Flat-Remix-GTK-Green-Darkest" -gtk-icon-theme-name="ePapirus-Dark" +gtk-icon-theme-name="Papirus-Dark" gtk-font-name="Noto Sans, 10" gtk-cursor-theme-name="BreezeX-Black" gtk-cursor-theme-size=32 diff --git a/gtk-3.0/settings.ini b/gtk-3.0/settings.ini index 310ac7b..809e192 100644 --- a/gtk-3.0/settings.ini +++ b/gtk-3.0/settings.ini @@ -1,6 +1,6 @@ [Settings] gtk-theme-name=Flat-Remix-GTK-Green-Darkest -gtk-icon-theme-name=ePapirus-Dark +gtk-icon-theme-name=Papirus-Dark gtk-font-name=Noto Sans, 10 gtk-cursor-theme-name=BreezeX-Black gtk-cursor-theme-size=32 diff --git a/xsettingsd/xsettingsd.conf b/xsettingsd/xsettingsd.conf index 47a327b..7e001eb 100644 --- a/xsettingsd/xsettingsd.conf +++ b/xsettingsd/xsettingsd.conf @@ -1,5 +1,5 @@ Net/ThemeName "Flat-Remix-GTK-Green-Darkest" -Net/IconThemeName "ePapirus-Dark" +Net/IconThemeName "Papirus-Dark" Gtk/CursorThemeName "BreezeX-Black" Net/EnableEventSounds 1 EnableInputFeedbackSounds 0 -- cgit v1.2.3 From 2073f5803d4fef1d8b723a6fd8e8490ad2c1e2d7 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Thu, 31 Jul 2025 09:59:59 -0500 Subject: Add basic hyprswap.sh script --- hypr/hyprland.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index e1b0b12..a147c52 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -248,6 +248,8 @@ bind = $mainMod+SHIFT, H, layoutmsg, movewindowto l #HYPRSCROLLING bind = $mainMod+SHIFT, J, layoutmsg, movewindowto d #HYPRSCROLLING bind = $mainMod+SHIFT, K, layoutmsg, movewindowto u #HYPRSCROLLING bind = $mainMod+SHIFT, L, layoutmsg, movewindowto r #HYPRSCROLLING +bind = $mainMod+CONTROL, H, exec, hyprswap.sh -l +bind = $mainMod+CONTROL, L, exec, hyprswap.sh -r #bind = $mainMod+SHIFT, H, movewindow, l #HYPRSCROLLING #bind = $mainMod+SHIFT, L, movewindow, r #HYPRSCROLLING #bind = $mainMod+SHIFT, K, movewindow, u #HYPRSCROLLING -- cgit v1.2.3 From 89f8a307fd7cb75b6964ac55b5b0866735e06777 Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 31 Jul 2025 23:13:42 -0500 Subject: Use my power-menu script, not rofi --- waybar/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waybar/config b/waybar/config index 933dedc..d65fb49 100644 --- a/waybar/config +++ b/waybar/config @@ -223,7 +223,7 @@ }, "custom/power":{ "format": "", - "on-click": "rofi -show p -modi p:rofi-power-menu", + "on-click": "power-menu", //"on-click-right": "killall rofi" }, "custom/snip":{ -- cgit v1.2.3 From 9bc659fd7d38dd17f9c4a09996f08f077da66fba Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 31 Jul 2025 23:14:03 -0500 Subject: Use GiB RAM and new symbol in waybar --- waybar/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waybar/config b/waybar/config index d65fb49..ba85118 100644 --- a/waybar/config +++ b/waybar/config @@ -157,7 +157,7 @@ "tooltip": false }, "memory": { - "format": "{}% " + "format": "{used}G " }, "battery": { "bat": "BAT0", -- cgit v1.2.3 From dcd1772757848dec3610befc8e869f870ed569c2 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 1 Aug 2025 00:10:32 -0500 Subject: Match gtk theme in hyprland.conf --- hypr/hyprland.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index a147c52..80758cb 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -16,8 +16,8 @@ exec-once = waybar exec-once = pypr exec-once = hyprscratch init exec-once = lxqt-policykit-agent -exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest-Solid' -exec-once = import-gsettings icon-theme 'COSMIC' +exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest' +exec-once = import-gsettings icon-theme 'Papirus-Dark' exec-once = import-gsettings cursor-theme 'BreezeX-Black' exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' exec-once = xrdb -load "$XDG_CONFIG_HOME"/X11/xresources -- cgit v1.2.3 From 8276ccd79b877227a336beeb0a2d6b8c9f76e6bd Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 1 Aug 2025 16:04:59 -0500 Subject: Load plugins on startup, not with hyprpm --- hypr/hyprland.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 80758cb..5a4151b 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -5,6 +5,11 @@ monitor = , preferred, auto, 1 # See https://wiki.hyprland.org/Configuring/Keywords/ for more +#{{{ Plugins +plugin = /var/cache/hyprpm/zachir/hyprland-plugins/hyprscrolling.so +plugin = /var/cache/hyprpm/zachir/hyprsplit/hyprsplit.so +#}}} + #{{{ Autostart # Execute your favorite apps at launch # exec-once = waybar & hyprpaper & firefox -- cgit v1.2.3 From 45560e78790b6cbb928ece69d3d369c6cb756a7f Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 1 Aug 2025 16:05:18 -0500 Subject: Add right padding for waybar unicode --- waybar/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/waybar/style.css b/waybar/style.css index 6ecb923..599e6af 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -160,11 +160,13 @@ label:focus { #cpu { background-color: #1b1d1c; color: #ffffff; + padding-right: 18px; } #memory { background-color: #198844; color: #ffffff; + padding-right: 18px; } #disk { @@ -180,6 +182,7 @@ label:focus { #network { background-color: #198844; color: #ffffff; + padding-right: 18px; } #network.disconnected { @@ -190,6 +193,7 @@ label:focus { #wireplumber { background-color: #198844; color: #ffffff; + padding-right: 18px; } #wireplumber.muted { @@ -323,7 +327,7 @@ label:focus { #idle_inhibitor { background-color: #1b1d1c; border-radius: 20px 0px 0px 20px; - + padding-right: 18px; } #idle_inhibitor.activated { -- cgit v1.2.3 From f6848cbec6fbeca616a0c55ac6fa8e44704c445c Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 2 Aug 2025 11:02:41 -0500 Subject: Ignore signal strength --- waybar/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waybar/config b/waybar/config index ba85118..9a60dba 100644 --- a/waybar/config +++ b/waybar/config @@ -192,7 +192,7 @@ }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface - "format-wifi": "{essid} ({signalStrength}%) ", + "format-wifi": "{essid} ", "format-ethernet": "Connected  ", "tooltip-format": "{ifname} via {gwaddr} ", "format-linked": "{ifname} (No IP) ", -- cgit v1.2.3 From 6c401a2b4ddab98ade9e8a93afa27b5584079c29 Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 2 Aug 2025 11:07:14 -0500 Subject: Add monitor defs to hyprland --- hypr/hyprland.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 5a4151b..6c32a42 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -1,5 +1,8 @@ # See https://wiki.hyprland.org/Configuring/Monitors/ #{{{ Monitor config +#monitor = DP-2, 1920x1080@75, 0x0, 1 +#monitor = HDMI-A-1, 1920x1080@75, 1920x0, 1 +#monitor = eDP-1, 1920x1080@60, 0x0, 1 monitor = , preferred, auto, 1 #}}} -- cgit v1.2.3