mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-08 04:09:15 -04:00
feat(mangowm): add live config reloads & misc QOL updates
- Hide workspace tags during Mango overview - Add HJKL focus/move defaults - Add Mango natural touchpad scrolling & cursor configs - Fix Mango startup
This commit is contained in:
@@ -2432,6 +2432,17 @@ Item {
|
||||
onSliderValueChanged: newValue => SettingsData.setCursorSize(newValue)
|
||||
}
|
||||
|
||||
SettingsToggleRow {
|
||||
tab: "theme"
|
||||
tags: ["mango", "touchpad", "trackpad", "natural", "scrolling"]
|
||||
settingKey: "mangoTrackpadNaturalScrolling"
|
||||
text: I18n.tr("Natural Touchpad Scrolling")
|
||||
description: I18n.tr("Invert touchpad scroll direction")
|
||||
visible: CompositorService.isMango
|
||||
checked: SettingsData.mangoTrackpadNaturalScrolling
|
||||
onToggled: checked => SettingsData.set("mangoTrackpadNaturalScrolling", checked)
|
||||
}
|
||||
|
||||
SettingsToggleRow {
|
||||
tab: "theme"
|
||||
tags: ["cursor", "hide", "typing"]
|
||||
|
||||
@@ -189,7 +189,7 @@ Item {
|
||||
settingKey: "dwlShowAllTags"
|
||||
tags: ["dwl", "tags", "workspace"]
|
||||
text: I18n.tr("Show All Tags")
|
||||
description: I18n.tr("Show all 9 tags instead of only occupied tags (DWL only)")
|
||||
description: I18n.tr("Show all 9 tags instead of only occupied tags")
|
||||
checked: SettingsData.dwlShowAllTags
|
||||
visible: CompositorService.isDwl || CompositorService.isMango
|
||||
onToggled: checked => SettingsData.set("dwlShowAllTags", checked)
|
||||
|
||||
Reference in New Issue
Block a user