From 6aad5a958159af7e692aa1cc79c04957d05db7da Mon Sep 17 00:00:00 2001 From: "Celestial.y" Date: Fri, 31 Oct 2025 13:17:35 +0800 Subject: [PATCH 1/5] Update issue template --- .github/ISSUE_TEMPLATE/1-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/1-issue.yml b/.github/ISSUE_TEMPLATE/1-issue.yml index 01215ec9a..e3dd6f6ff 100644 --- a/.github/ISSUE_TEMPLATE/1-issue.yml +++ b/.github/ISSUE_TEMPLATE/1-issue.yml @@ -4,7 +4,7 @@ labels: ["ISSUE"] body: - type: markdown attributes: - value: "**Welcome to submit a new issue!**\n- It takes only 3 steps, so please be patient :)\n- Tip: If your issue is not a feature request, and it does not fit into the following form, for example \"how can I edit some widget\", please use [Discussions](https://github.com/end-4/dots-hyprland/discussions) instead." + value: "**Welcome to submit a new issue!**\n- Please search in [existing issues](https://github.com/end-4/dots-hyprland/issues?q=is%3Aissue) before continue.\n- It takes only 3 steps, so please be patient :)\n- Tip: If your issue is not a feature request, and it does not fit into the following form, for example \"how can I edit some widget\", please use [Discussions](https://github.com/end-4/dots-hyprland/discussions) instead." - type: checkboxes attributes: label: "Step 1. Before you submit" From e02b505ae5d3b832d7da8274a559a659014d47bc Mon Sep 17 00:00:00 2001 From: "Celestial.y" Date: Fri, 31 Oct 2025 13:18:34 +0800 Subject: [PATCH 2/5] Update feature request template --- .github/ISSUE_TEMPLATE/2-feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/2-feature_request.yml b/.github/ISSUE_TEMPLATE/2-feature_request.yml index 59f10632a..ae1d54a3b 100644 --- a/.github/ISSUE_TEMPLATE/2-feature_request.yml +++ b/.github/ISSUE_TEMPLATE/2-feature_request.yml @@ -4,7 +4,7 @@ labels: ["FEATURE"] body: - type: markdown attributes: - value: "NOTE: Please write in **English**." + value: "NOTE:\n- Please search in [existing issues](https://github.com/end-4/dots-hyprland/issues?q=is%3Aissue) before continue.\n- Please write in **English**." - type: textarea attributes: From b1cc6bd19bc68dafb6598591e1e173169a57aafc Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 31 Oct 2025 09:19:33 +0100 Subject: [PATCH 3/5] overview: fix search bar blur --- dots/.config/quickshell/ii/modules/common/Appearance.qml | 1 + dots/.config/quickshell/ii/modules/common/widgets/Toolbar.qml | 2 +- dots/.config/quickshell/ii/modules/overview/SearchWidget.qml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/Appearance.qml b/dots/.config/quickshell/ii/modules/common/Appearance.qml index f78d49a07..3dcb2e897 100644 --- a/dots/.config/quickshell/ii/modules/common/Appearance.qml +++ b/dots/.config/quickshell/ii/modules/common/Appearance.qml @@ -164,6 +164,7 @@ Singleton { property color colOnSecondaryContainer: m3colors.m3onSecondaryContainer property color colSurfaceContainerLow: ColorUtils.transparentize(m3colors.m3surfaceContainerLow, root.contentTransparency) property color colSurfaceContainer: ColorUtils.transparentize(m3colors.m3surfaceContainer, root.contentTransparency) + property color colBackgroundSurfaceContainer: ColorUtils.transparentize(m3colors.m3surfaceContainer, root.backgroundTransparency) property color colSurfaceContainerHigh: ColorUtils.transparentize(m3colors.m3surfaceContainerHigh, root.contentTransparency) property color colSurfaceContainerHighest: ColorUtils.transparentize(m3colors.m3surfaceContainerHighest, root.contentTransparency) property color colSurfaceContainerHighestHover: ColorUtils.mix(m3colors.m3surfaceContainerHighest, m3colors.m3onSurface, 0.95) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/Toolbar.qml b/dots/.config/quickshell/ii/modules/common/widgets/Toolbar.qml index 7c7e5f922..85112160f 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/Toolbar.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/Toolbar.qml @@ -25,7 +25,7 @@ Item { Rectangle { id: background anchors.fill: parent - color: Appearance.m3colors.m3surfaceContainer // Needs to be opaque + color: Appearance.m3colors.m3surfaceContainer implicitHeight: Math.max(toolbarLayout.implicitHeight + root.padding * 2, 56) implicitWidth: toolbarLayout.implicitWidth + root.padding * 2 radius: height / 2 diff --git a/dots/.config/quickshell/ii/modules/overview/SearchWidget.qml b/dots/.config/quickshell/ii/modules/overview/SearchWidget.qml index 3bc4c2e50..5286d0697 100644 --- a/dots/.config/quickshell/ii/modules/overview/SearchWidget.qml +++ b/dots/.config/quickshell/ii/modules/overview/SearchWidget.qml @@ -205,7 +205,7 @@ Item { // Wrapper implicitWidth: columnLayout.implicitWidth implicitHeight: columnLayout.implicitHeight radius: searchBar.height / 2 + searchBar.verticalPadding - color: Appearance.colors.colSurfaceContainer + color: Appearance.colors.colBackgroundSurfaceContainer ColumnLayout { id: columnLayout From e14c9b61d579849079e07d366f64bfae5828b1d0 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 31 Oct 2025 10:10:25 +0100 Subject: [PATCH 4/5] fix music recognition script --- .../quickshell/ii/scripts/musicRecognition/recognize-music.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/scripts/musicRecognition/recognize-music.sh b/dots/.config/quickshell/ii/scripts/musicRecognition/recognize-music.sh index 09b0361af..f7124bf8a 100755 --- a/dots/.config/quickshell/ii/scripts/musicRecognition/recognize-music.sh +++ b/dots/.config/quickshell/ii/scripts/musicRecognition/recognize-music.sh @@ -17,7 +17,7 @@ while getopts "i:t:s:" opt; do esac done if [ "$SOURCE_TYPE" = "monitor" ]; then - MONITOR_SOURCE=$(pactl list short sources 2>/dev/null | grep -m1 monitor | awk '{print $2}' || true) + MONITOR_SOURCE=$(pactl list short sources 2>/dev/null | grep RUNNING | grep -m1 monitor | awk '{print $2}' || true) elif [ "$SOURCE_TYPE" = "input" ]; then MONITOR_SOURCE=$(pactl info | grep "Default Source:" | awk '{print $3}' || true) else From df69162f7876f4c2452b62133accff9da94d3377 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 31 Oct 2025 11:23:34 +0100 Subject: [PATCH 5/5] deps: add songrec --- sdata/dist-arch/illogical-impulse-widgets/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdata/dist-arch/illogical-impulse-widgets/PKGBUILD b/sdata/dist-arch/illogical-impulse-widgets/PKGBUILD index dfc159457..45e8bb1d4 100644 --- a/sdata/dist-arch/illogical-impulse-widgets/PKGBUILD +++ b/sdata/dist-arch/illogical-impulse-widgets/PKGBUILD @@ -1,6 +1,6 @@ pkgname=illogical-impulse-widgets pkgver=1.0 -pkgrel=4 +pkgrel=5 pkgdesc='Illogical Impulse Widget Dependencies' arch=(any) license=(None) @@ -13,6 +13,7 @@ depends=( hyprlock hyprpicker nm-connection-editor + songrec translate-shell wlogout )