mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
quickshell and hyprland additions
This commit is contained in:
@@ -0,0 +1,172 @@
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import qs.modules.functions
|
||||
import qs.config
|
||||
import qs.modules.components
|
||||
import qs.services
|
||||
|
||||
ContentMenu {
|
||||
title: "Network"
|
||||
description: "Manage network connections."
|
||||
|
||||
ContentCard {
|
||||
ContentRowCard {
|
||||
cardSpacing: Metrics.spacing(0)
|
||||
verticalPadding: Network.wifiEnabled ? Metrics.padding(10) : Metrics.padding(0)
|
||||
cardMargin: Metrics.margin(0)
|
||||
|
||||
StyledText {
|
||||
text: powerSwitch.checked ? "Wi-Fi: On" : "Wi-Fi: Off"
|
||||
font.pixelSize: Metrics.fontSize(16)
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
Item { Layout.fillWidth: true }
|
||||
|
||||
StyledSwitch {
|
||||
id: powerSwitch
|
||||
checked: Network.wifiEnabled
|
||||
onToggled: Network.enableWifi(checked)
|
||||
}
|
||||
}
|
||||
|
||||
ContentRowCard {
|
||||
visible: Network.wifiEnabled
|
||||
cardSpacing: Metrics.spacing(0)
|
||||
verticalPadding: Metrics.padding(10)
|
||||
cardMargin: Metrics.margin(0)
|
||||
|
||||
ColumnLayout {
|
||||
spacing: Metrics.spacing(2)
|
||||
|
||||
StyledText {
|
||||
text: "Scanning"
|
||||
font.pixelSize: Metrics.fontSize(16)
|
||||
}
|
||||
|
||||
StyledText {
|
||||
text: "Search for nearby Wi-Fi networks."
|
||||
font.pixelSize: Metrics.fontSize(12)
|
||||
color: ColorUtils.transparentize(
|
||||
Appearance.m3colors.m3onSurface, 0.4
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Item { Layout.fillWidth: true }
|
||||
|
||||
StyledSwitch {
|
||||
checked: Network.scanning
|
||||
onToggled: {
|
||||
if (checked)
|
||||
Network.rescan()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
InfoCard {
|
||||
visible: Network.message !== "" && Network.message !== "ok"
|
||||
icon: "error"
|
||||
backgroundColor: Appearance.m3colors.m3error
|
||||
contentColor: Appearance.m3colors.m3onError
|
||||
title: "Failed to connect to " + Network.lastNetworkAttempt
|
||||
description: Network.message
|
||||
}
|
||||
|
||||
ContentCard {
|
||||
visible: Network.active !== null
|
||||
|
||||
StyledText {
|
||||
text: "Active Connection"
|
||||
font.pixelSize: Metrics.fontSize(18)
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
NetworkCard {
|
||||
connection: Network.active
|
||||
isActive: true
|
||||
showDisconnect: Network.active?.type === "wifi"
|
||||
}
|
||||
}
|
||||
|
||||
ContentCard {
|
||||
visible: Network.connections.filter(c => c.type === "ethernet").length > 0
|
||||
|
||||
StyledText {
|
||||
text: "Ethernet"
|
||||
font.pixelSize: Metrics.fontSize(18)
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: Network.connections.filter(c => c.type === "ethernet" && !c.active)
|
||||
delegate: NetworkCard {
|
||||
connection: modelData
|
||||
showConnect: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ContentCard {
|
||||
visible: Network.wifiEnabled
|
||||
|
||||
StyledText {
|
||||
text: "Available Wi-Fi Networks"
|
||||
font.pixelSize: Metrics.fontSize(18)
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
Item {
|
||||
visible: Network.connections.filter(c => c.type === "wifi").length === 0 && !Network.scanning
|
||||
width: parent.width
|
||||
height: Metrics.spacing(40)
|
||||
|
||||
StyledText {
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
||||
text: "No networks found"
|
||||
font.pixelSize: Metrics.fontSize(14)
|
||||
color: ColorUtils.transparentize(Appearance.m3colors.m3onSurface, 0.4)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: Network.connections.filter(c => c.type === "wifi" && !c.active)
|
||||
delegate: NetworkCard {
|
||||
connection: modelData
|
||||
showConnect: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ContentCard {
|
||||
visible: Network.savedNetworks.length > 0
|
||||
StyledText {
|
||||
text: "Remembered Networks"
|
||||
font.pixelSize: Metrics.fontSize(18)
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
Item {
|
||||
visible: Network.savedNetworks.length === 0
|
||||
width: parent.width
|
||||
height: Metrics.spacing(40)
|
||||
StyledText {
|
||||
anchors.left: parent.left
|
||||
text: "No remembered networks"
|
||||
font.pixelSize: Metrics.fontSize(14)
|
||||
color: Appearance.colors.colSubtext
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: Network.connections.filter(c => c.type === "wifi" && c.saved && !c.active)
|
||||
delegate: NetworkCard {
|
||||
connection: modelData
|
||||
showConnect: false
|
||||
showDisconnect: false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user