summaryrefslogtreecommitdiff
path: root/config
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 /config
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 'config')
-rw-r--r--config/Config.qml2
-rw-r--r--config/LauncherConfig.qml110
2 files changed, 0 insertions, 112 deletions
diff --git a/config/Config.qml b/config/Config.qml
index b875eef..40ca036 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -272,7 +272,6 @@ Singleton {
hiddenApps: launcher.hiddenApps,
useFuzzy: {
apps: launcher.useFuzzy.apps,
- actions: launcher.useFuzzy.actions,
schemes: launcher.useFuzzy.schemes,
variants: launcher.useFuzzy.variants,
wallpapers: launcher.useFuzzy.wallpapers
@@ -283,7 +282,6 @@ Singleton {
wallpaperWidth: launcher.sizes.wallpaperWidth,
wallpaperHeight: launcher.sizes.wallpaperHeight
},
- actions: launcher.actions
};
}
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml
index 9d9c50c..ea55838 100644
--- a/config/LauncherConfig.qml
+++ b/config/LauncherConfig.qml
@@ -6,8 +6,6 @@ JsonObject {
property int maxShown: 7
property int maxWallpapers: 9 // Warning: even numbers look bad
property string specialPrefix: "@"
- property string actionPrefix: ">"
- property bool enableDangerousActions: false // Allow actions that can cause losing data, like shutdown, reboot and logout
property int dragThreshold: 50
property bool vimKeybinds: false
property list<string> hiddenApps: []
@@ -16,7 +14,6 @@ JsonObject {
component UseFuzzy: JsonObject {
property bool apps: false
- property bool actions: false
property bool schemes: false
property bool variants: false
property bool wallpapers: false
@@ -28,111 +25,4 @@ JsonObject {
property int wallpaperWidth: 280
property int wallpaperHeight: 200
}
-
- property list<var> actions: [
- {
- name: "Calculator",
- icon: "calculate",
- description: "Do simple math equations (powered by Qalc)",
- command: ["autocomplete", "calc"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Scheme",
- icon: "palette",
- description: "Change the current colour scheme",
- command: ["autocomplete", "scheme"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Wallpaper",
- icon: "image",
- description: "Change the current wallpaper",
- command: ["autocomplete", "wallpaper"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Variant",
- icon: "colors",
- description: "Change the current scheme variant",
- command: ["autocomplete", "variant"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Transparency",
- icon: "opacity",
- description: "Change shell transparency",
- command: ["autocomplete", "transparency"],
- enabled: false,
- dangerous: false
- },
- {
- name: "Random",
- icon: "casino",
- description: "Switch to a random wallpaper",
- command: ["caelestia", "wallpaper", "-r"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Light",
- icon: "light_mode",
- description: "Change the scheme to light mode",
- command: ["setMode", "light"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Dark",
- icon: "dark_mode",
- description: "Change the scheme to dark mode",
- command: ["setMode", "dark"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Shutdown",
- icon: "power_settings_new",
- description: "Shutdown the system",
- command: ["systemctl", "poweroff"],
- enabled: true,
- dangerous: true
- },
- {
- name: "Reboot",
- icon: "cached",
- description: "Reboot the system",
- command: ["systemctl", "reboot"],
- enabled: true,
- dangerous: true
- },
- {
- name: "Logout",
- icon: "exit_to_app",
- description: "Log out of the current session",
- command: ["loginctl", "terminate-user", ""],
- enabled: true,
- dangerous: true
- },
- {
- name: "Lock",
- icon: "lock",
- description: "Lock the current session",
- command: ["loginctl", "lock-session"],
- enabled: true,
- dangerous: false
- },
- {
- name: "Sleep",
- icon: "bedtime",
- description: "Suspend then hibernate",
- command: ["systemctl", "suspend-then-hibernate"],
- enabled: true,
- dangerous: false
- }
- ]
}