101 lines
2.1 KiB
QML
101 lines
2.1 KiB
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property string actionPrefix: ">"
|
|
property list<var> actions: [
|
|
{
|
|
name: "Calculator",
|
|
icon: "calculate",
|
|
description: "Do simple math equations",
|
|
command: ["autocomplete", "calc"],
|
|
enabled: true,
|
|
dangerous: false
|
|
},
|
|
{
|
|
name: "Light",
|
|
icon: "light_mode",
|
|
description: "Change to light mode",
|
|
command: ["setMode", "light"],
|
|
enabled: true,
|
|
dangerous: false
|
|
},
|
|
{
|
|
name: "Dark",
|
|
icon: "dark_mode",
|
|
description: "Change to dark mode",
|
|
command: ["setMode", "dark"],
|
|
enabled: true,
|
|
dangerous: false
|
|
},
|
|
{
|
|
name: "Wallpaper",
|
|
icon: "image",
|
|
description: "Change the current wallpaper",
|
|
command: ["autocomplete", "wallpaper"],
|
|
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: "logout",
|
|
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
|
|
},
|
|
]
|
|
property int maxAppsShown: 10
|
|
property int maxWallpapers: 7
|
|
property Sizes sizes: Sizes {
|
|
}
|
|
property string specialPrefix: "@"
|
|
property UseFuzzy useFuzzy: UseFuzzy {
|
|
}
|
|
|
|
component Sizes: JsonObject {
|
|
property int itemHeight: 50
|
|
property int itemWidth: 600
|
|
property int wallpaperHeight: 200
|
|
property int wallpaperWidth: 280
|
|
}
|
|
component UseFuzzy: JsonObject {
|
|
property bool actions: false
|
|
property bool apps: false
|
|
property bool schemes: false
|
|
property bool variants: false
|
|
property bool wallpapers: false
|
|
}
|
|
}
|