usable
This commit is contained in:
42
config/aurora/modules/PowerMode.qml
Normal file
42
config/aurora/modules/PowerMode.qml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
import Quickshell // for PanelWindow
|
||||||
|
import QtQuick // for Text
|
||||||
|
import QtQuick.Controls
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell.Io
|
||||||
|
import Quickshell.Widgets
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
import Quickshell.Services.UPower
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Button {
|
||||||
|
Layout.topMargin: 5
|
||||||
|
x: (parent.width - width) / 2
|
||||||
|
implicitWidth: parent.width - 10
|
||||||
|
implicitHeight: parent.height / 5 - parent.spacing
|
||||||
|
|
||||||
|
text: 'performance'
|
||||||
|
onClicked: PowerProfiles.profile = PowerProfile.Performance
|
||||||
|
visible: PowerProfiles.hasPerformanceProfile
|
||||||
|
}
|
||||||
|
Button {
|
||||||
|
Layout.topMargin: 5
|
||||||
|
x: (parent.width - width) / 2
|
||||||
|
implicitWidth: parent.width - 10
|
||||||
|
implicitHeight: parent.height / 5 - parent.spacing
|
||||||
|
|
||||||
|
text: 'balanced'
|
||||||
|
onClicked: PowerProfiles.profile = PowerProfile.Balanced
|
||||||
|
}
|
||||||
|
Button {
|
||||||
|
Layout.topMargin: 5
|
||||||
|
x: (parent.width - width) / 2
|
||||||
|
implicitWidth: parent.width - 10
|
||||||
|
implicitHeight: parent.height / 5 - parent.spacing
|
||||||
|
|
||||||
|
text: 'power saver'
|
||||||
|
onClicked: PowerProfiles.profile = PowerProfile.PowerSaver
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user