mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Add dock & dock settings in General.qml
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user