summaryrefslogtreecommitdiff
path: root/modules/launcher/services/M3Variants.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-08 16:13:14 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-08 16:13:14 -0500
commit814d2f336c6a56e53412201bf99ca69753bda71b (patch)
treedd793d6efe906b30ced51152f377f9907f1ab06f /modules/launcher/services/M3Variants.qml
parentclean up lock screen (diff)
downloadcaelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.tar.gz
caelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.tar.bz2
caelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.zip
remove themes and configs from launcher
Diffstat (limited to 'modules/launcher/services/M3Variants.qml')
-rw-r--r--modules/launcher/services/M3Variants.qml85
1 files changed, 0 insertions, 85 deletions
diff --git a/modules/launcher/services/M3Variants.qml b/modules/launcher/services/M3Variants.qml
deleted file mode 100644
index 963a4d4..0000000
--- a/modules/launcher/services/M3Variants.qml
+++ /dev/null
@@ -1,85 +0,0 @@
-pragma Singleton
-
-import ".."
-import qs.config
-import qs.utils
-import Quickshell
-import QtQuick
-
-Searcher {
- id: root
-
- function transformSearch(search: string): string {
- return search.slice(`${Config.launcher.actionPrefix}variant `.length);
- }
-
- list: [
- Variant {
- variant: "vibrant"
- icon: "sentiment_very_dissatisfied"
- name: qsTr("Vibrant")
- description: qsTr("A high chroma palette. The primary palette's chroma is at maximum.")
- },
- Variant {
- variant: "tonalspot"
- icon: "android"
- name: qsTr("Tonal Spot")
- description: qsTr("Default for Material theme colours. A pastel palette with a low chroma.")
- },
- Variant {
- variant: "expressive"
- icon: "compare_arrows"
- name: qsTr("Expressive")
- description: qsTr("A medium chroma palette. The primary palette's hue is different from the seed colour, for variety.")
- },
- Variant {
- variant: "fidelity"
- icon: "compare"
- name: qsTr("Fidelity")
- description: qsTr("Matches the seed colour, even if the seed colour is very bright (high chroma).")
- },
- Variant {
- variant: "content"
- icon: "sentiment_calm"
- name: qsTr("Content")
- description: qsTr("Almost identical to fidelity.")
- },
- Variant {
- variant: "fruitsalad"
- icon: "nutrition"
- name: qsTr("Fruit Salad")
- description: qsTr("A playful theme - the seed colour's hue does not appear in the theme.")
- },
- Variant {
- variant: "rainbow"
- icon: "looks"
- name: qsTr("Rainbow")
- description: qsTr("A playful theme - the seed colour's hue does not appear in the theme.")
- },
- Variant {
- variant: "neutral"
- icon: "contrast"
- name: qsTr("Neutral")
- description: qsTr("Close to grayscale, a hint of chroma.")
- },
- Variant {
- variant: "monochrome"
- icon: "filter_b_and_w"
- name: qsTr("Monochrome")
- description: qsTr("All colours are grayscale, no chroma.")
- }
- ]
- useFuzzy: Config.launcher.useFuzzy.variants
-
- component Variant: QtObject {
- required property string variant
- required property string icon
- required property string name
- required property string description
-
- function onClicked(list: AppList): void {
- list.visibilities.launcher = false;
- Quickshell.execDetached(["caelestia", "scheme", "set", "-v", variant]);
- }
- }
-}