1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-22 19:15:24 -04:00

feat: add option to hide package source badges in launcher (#2676)

This commit is contained in:
Huỳnh Thiện Lộc
2026-06-21 14:51:44 +07:00
committed by GitHub
parent 59fd6db83e
commit 8610b915ec
5 changed files with 41 additions and 1 deletions
@@ -671,6 +671,15 @@ Item {
onToggled: checked => SettingsData.set("dankLauncherV2UnloadOnClose", checked)
}
SettingsToggleRow {
settingKey: "dankLauncherV2ShowSourceBadges"
tags: ["launcher", "appearance", "badge", "source", "flatpak"]
text: I18n.tr("Show Package Source Badges")
description: I18n.tr("Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.")
checked: SettingsData.dankLauncherV2ShowSourceBadges
onToggled: checked => SettingsData.set("dankLauncherV2ShowSourceBadges", checked)
}
SettingsToggleRow {
settingKey: "dankLauncherV2BorderEnabled"
tags: ["launcher", "border", "outline"]