20 lines
322 B
QML
20 lines
322 B
QML
// Time.qml
|
|
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
import Quickshell.Hyprland
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
function getHyprlandWorkspaceById(id) {
|
|
for (var x of Hyprland.workspaces.values) {
|
|
if (x.id == id) {
|
|
return x;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|