Add dock & dock settings in General.qml

This commit is contained in:
Ly-sec 2025-08-14 17:00:58 +02:00
parent bad205f5f6
commit 4635aec80e
4 changed files with 366 additions and 0 deletions

View file

@ -108,6 +108,24 @@ ColumnLayout {
Settings.data.general.dimDesktop = v
}
}
NToggle {
label: "Show Dock"
description: "Enable the dock at the bottom of the screen"
value: Settings.data.general.showDock
onToggled: function (v) {
Settings.data.general.showDock = v
}
}
NToggle {
label: "Auto-hide Dock"
description: "Automatically hide the dock when not in use"
value: Settings.data.general.dockAutoHide
onToggled: function (v) {
Settings.data.general.dockAutoHide = v
}
}
}
}
}