diff --git a/modules/Shortcuts.qml b/modules/Shortcuts.qml index e240bf9..2eb064e 100644 --- a/modules/Shortcuts.qml +++ b/modules/Shortcuts.qml @@ -1,6 +1,6 @@ import qs.services +import qs.widgets import Quickshell -import Quickshell.Hyprland Scope { id: root @@ -28,8 +28,4 @@ Scope { description: 'Open the Component Storybook' onPressed: Visibility.storybook = !Visibility.storybook } - - component LuxShortcut: GlobalShortcut { - appid: "lux" - } } diff --git a/widgets/LuxShortcut.qml b/widgets/LuxShortcut.qml new file mode 100644 index 0000000..a724552 --- /dev/null +++ b/widgets/LuxShortcut.qml @@ -0,0 +1,5 @@ +import Quickshell.Hyprland + +GlobalShortcut { + appid: "lux" +} diff --git a/components/StyledTextField.qml b/widgets/StyledTextField.qml similarity index 100% rename from components/StyledTextField.qml rename to widgets/StyledTextField.qml diff --git a/components/StyledWindow.qml b/widgets/StyledWindow.qml similarity index 100% rename from components/StyledWindow.qml rename to widgets/StyledWindow.qml