all repos — quickshell @ e2769bc3e55ea0c04a1fded710ab27af89bf482a

A desert-witch desktop shell

bar/modules/Scale.qml (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
//Scale.qml
import QtQuick
import Quickshell
import QtQuick.Layouts
import Quickshell.Services.UPower
import "../.."
import "../classes" as Class

RowLayout {
  spacing: 4
      anchors.centerIn: parent

  Class.TopbarIcon {
    text: (Size.scale == 1.5) ? Icons.modules.size : ""
    font.family: font_icon.name
    anchors.centerIn: parent
    leftPadding: 4
  }
}