diff --git a/modules/configuration/Configuration.qml b/modules/configuration/Configuration.qml index 7582efe..4c70926 100644 --- a/modules/configuration/Configuration.qml +++ b/modules/configuration/Configuration.qml @@ -6,6 +6,7 @@ import qs.services import QtQuick import QtQuick.Controls import QtQuick.Layouts +import Quickshell.Widgets StyledPanelWindow { id: window @@ -114,8 +115,8 @@ StyledPanelWindow { ConfigurationView { icon: Styling.lucide.icons.swatchBook - title: "Look And Feel" - view: LookAndFeel {} + title: "Styling" + view: StylingView {} } } diff --git a/modules/configuration/LookAndFeel.qml b/modules/configuration/StylingView.qml similarity index 100% rename from modules/configuration/LookAndFeel.qml rename to modules/configuration/StylingView.qml diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml index 269ee8a..e459c31 100644 --- a/modules/launcher/services/Apps.qml +++ b/modules/launcher/services/Apps.qml @@ -10,7 +10,7 @@ FuzzySearch { function launch(entry: DesktopEntry): void { if (entry.runInTerminal) Quickshell.execDetached({ - command: ["app2unit", "--", "alacritty", "exec", ...entry.command], + command: ["app2unit", "--", "kitty", "exec", ...entry.command], workingDirectory: entry.workingDirectory }); else