bar/modules/Network.qml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
//Network.qml
import QtQuick
import Quickshell
import QtQuick.Layouts
import Quickshell.Services.UPower
import "../.."
import "../classes" as Class
RowLayout {
spacing: 2
Class.BottombarIcon {
text: Icons.network.crossed_empty + " MI_10023"
color: Resources.palette.grey
font.family: font_jetbrains.name
anchors.centerIn: parent
}
}
|