diff --git a/quickshell/bar/widgets/common/Icons.qml b/quickshell/bar/widgets/common/Icons.qml index 192f20a..7d13450 100644 --- a/quickshell/bar/widgets/common/Icons.qml +++ b/quickshell/bar/widgets/common/Icons.qml @@ -22,6 +22,8 @@ Singleton { "dev.zed.Zed": "", "foot": "", "gamescope": "󰺵", + "blender": "󰂫", + "Spotify": "", "fallback": "" }) } diff --git a/quickshell/bar/widgets/workspace/WorkspaceWidget.qml b/quickshell/bar/widgets/workspace/WorkspaceWidget.qml index 05b1a58..8da90fc 100644 --- a/quickshell/bar/widgets/workspace/WorkspaceWidget.qml +++ b/quickshell/bar/widgets/workspace/WorkspaceWidget.qml @@ -46,6 +46,7 @@ RowLayout { Text { id: icon color: "white" + font.family: "HeavyData Nerd Font" font.pointSize: 13 // long-ass oneliner for "if there is no class icon, go to fallback" text: (Common.Icons.appIcons[(modelData.lastIpcObject.class)] != undefined ) ? Common.Icons.appIcons[(modelData.lastIpcObject.class)] : Common.Icons.appIcons["fallback"]