From 9ee3da3100121448f0e10f98f6ca709a8d60dfdc Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Thu, 12 Mar 2026 08:55:28 +0000 Subject: [PATCH 1/3] feat(waybar): add bluetooth module --- .config/waybar/config | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.config/waybar/config b/.config/waybar/config index de5b34c..b1ddf63 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -16,6 +16,7 @@ "modules-right": [ "tray", "pulseaudio", + "bluetooth", "custom/micmute", "battery", "custom/power" @@ -62,6 +63,16 @@ "on-click-right": "pavucontrol" }, + "bluetooth": { + "format": "󰂯 {num_connections}", + "format-connected": "󰂱 {num_connections}", + "format-disabled": "󰂲", + "tooltip-format-connected": "{device_enumerate}", + "tooltip-format-enumerate-connected": "󰂱 {device_alias} ({device_battery_percentage}%)", + "on-click": "blueman-manager", + "on-click-right": "bluectl power toggle" + }, + "battery": { "interval":2, "states": { From 568a81a94d6a375693a39e56db482411d411d65d Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Thu, 12 Mar 2026 08:55:49 +0000 Subject: [PATCH 2/3] fix(hypr): increase scroll factor Scrolling on certain apps is too slow with 0.2 --- .config/hypr/hyprland.conf | 2 +- .config/hypr/input.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index a802df5..a0e41ec 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -29,8 +29,8 @@ env = __GLX_VENDOR_LIBRARY_NAME,nvidia env = NVD_BACKEND,direct env = QT_QPA_PLATFORMTHEME,qt6ct # for Qt apps# Theme -exec-once = waybar exec-once = nextcloud +exec-once = waybar exec-once = hyprctl setcursor Breeze 24 source = ~/.config/hypr/input.conf diff --git a/.config/hypr/input.conf b/.config/hypr/input.conf index 2cc1b34..b38a20b 100644 --- a/.config/hypr/input.conf +++ b/.config/hypr/input.conf @@ -13,7 +13,7 @@ input { touchpad { natural_scroll = true - scroll_factor = 0.2 + scroll_factor = 0.5 } } From 1c1250672822ef9ff1e006b3138604a2bfb98c8b Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Thu, 12 Mar 2026 08:56:16 +0000 Subject: [PATCH 3/3] chore(gitconfig): add LFS config --- .gitconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitconfig b/.gitconfig index 4b4622a..cf304de 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,3 +1,8 @@ [user] email = dylanseandefaoite@gmail.com name = Dylan De Faoite +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true