mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-19 04:08:48 +00:00
dock: remove user config option because it doesn't work
(just use enableDock in shell.qml)
This commit is contained in:
parent
8e1f28b11a
commit
fa2723a54d
2 changed files with 1 additions and 2 deletions
|
|
@ -53,7 +53,6 @@ Singleton {
|
|||
}
|
||||
|
||||
property QtObject dock: QtObject {
|
||||
property bool enable: false
|
||||
property real height: 60
|
||||
property real hoverRegionHeight: 3
|
||||
property bool pinnedOnStartup: false
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ ShellRoot {
|
|||
LazyLoader { active: enableBar; component: Bar {} }
|
||||
LazyLoader { active: enableBackgroundWidgets; component: BackgroundWidgets {} }
|
||||
LazyLoader { active: enableCheatsheet; component: Cheatsheet {} }
|
||||
LazyLoader { active: (enableDock && ConfigOptions?.dock.enable); component: Dock {} }
|
||||
LazyLoader { active: enableDock; component: Dock {} }
|
||||
LazyLoader { active: enableMediaControls; component: MediaControls {} }
|
||||
LazyLoader { active: enableNotificationPopup; component: NotificationPopup {} }
|
||||
LazyLoader { active: enableOnScreenDisplayBrightness; component: OnScreenDisplayBrightness {} }
|
||||
|
|
|
|||
Loading…
Reference in a new issue