22 lines
1.2 KiB
QML
22 lines
1.2 KiB
QML
import QtQuick
|
|
import qs.widgets.launcher
|
|
|
|
CyberDockContent {
|
|
width: 1440
|
|
height: 272
|
|
query: ""
|
|
selectedIndex: 3
|
|
showIcons: false
|
|
apps: [
|
|
{ name: "Alacritty", genericName: "Terminal", comment: "GPU accelerated command interface", icon: "utilities-terminal" },
|
|
{ name: "Vivaldi", genericName: "Browser", comment: "Access web applications", icon: "vivaldi" },
|
|
{ name: "Obsidian", genericName: "Knowledge", comment: "Local-first markdown workspace", icon: "obsidian" },
|
|
{ name: "Cosmic Files", genericName: "Files", comment: "Browse local storage", icon: "com.system76.CosmicFiles" },
|
|
{ name: "Jellyfin", genericName: "Media", comment: "Stream the homelab library", icon: "jellyfin-media-player" },
|
|
{ name: "Spotify", genericName: "Music", comment: "Browse and play music", icon: "spotify" },
|
|
{ name: "Steam", genericName: "Games", comment: "Launch and manage games", icon: "steam" },
|
|
{ name: "Blender", genericName: "3D", comment: "Model and render scenes", icon: "blender" },
|
|
{ name: "Visual Studio Code", genericName: "Editor", comment: "Edit and debug projects", icon: "visual-studio-code" }
|
|
]
|
|
}
|