From 2c8268497f8408329dea8cf2c2c6d04572845ffd Mon Sep 17 00:00:00 2001 From: xdenotte Date: Thu, 21 Aug 2025 18:42:03 +0200 Subject: [PATCH 1/3] Small fix bash script for NixOS systems --- generate-themes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate-themes.sh b/generate-themes.sh index b62707a1..eeab5d17 100755 --- a/generate-themes.sh +++ b/generate-themes.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # System theme generation script for DankMaterialShell # This script uses matugen to generate GTK and Qt themes from wallpaper or color From 3b327b93baabfe169d24a4917f8d3cc84bd9c2e0 Mon Sep 17 00:00:00 2001 From: xdenotte Date: Thu, 21 Aug 2025 18:52:27 +0200 Subject: [PATCH 2/3] Update another bash script --- verify-notifications.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify-notifications.sh b/verify-notifications.sh index c1f62ef2..8cd0ffab 100755 --- a/verify-notifications.sh +++ b/verify-notifications.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Enhanced Notification System Test Script with Common Icons # Uses icons that are more likely to be available on most systems From bcd02d4e907f15e22478f66b94e5ddb28a76f93e Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 21 Aug 2025 14:36:24 -0400 Subject: [PATCH 3/3] missing nvidia color --- Common/Theme.qml | 4 +++- Widgets/DankDropdown.qml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Common/Theme.qml b/Common/Theme.qml index dabd25ff..a907a192 100644 --- a/Common/Theme.qml +++ b/Common/Theme.qml @@ -70,7 +70,8 @@ Singleton { surfaceContainerHigh: getMatugenColor("surface_container_high", "#292b2f"), error: "#F2B8B5", warning: "#FF9800", - info: "#2196F3" + info: "#2196F3", + success: "#4CAF50" } } else { return StockThemes.getThemeByName(currentTheme, isLightMode) @@ -95,6 +96,7 @@ Singleton { property color error: currentThemeData.error || "#F2B8B5" property color warning: currentThemeData.warning || "#FF9800" property color info: currentThemeData.info || "#2196F3" + property color success: currentThemeData.success || "#4CAF50" property color primaryHover: Qt.rgba(primary.r, primary.g, primary.b, 0.12) property color primaryHoverLight: Qt.rgba(primary.r, primary.g, primary.b, 0.08) diff --git a/Widgets/DankDropdown.qml b/Widgets/DankDropdown.qml index e651f628..7e469659 100644 --- a/Widgets/DankDropdown.qml +++ b/Widgets/DankDropdown.qml @@ -348,7 +348,7 @@ Rectangle { onClicked: { root.currentValue = modelData root.valueChanged(modelData) - dropdownMenu.close() + ListView.view.popupRef.close() } } }