summaryrefslogtreecommitdiff
path: root/.config/quickshell/Brightness.qml
diff options
context:
space:
mode:
Diffstat (limited to '.config/quickshell/Brightness.qml')
-rw-r--r--.config/quickshell/Brightness.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.config/quickshell/Brightness.qml b/.config/quickshell/Brightness.qml
deleted file mode 100644
index 80a8d1f..0000000
--- a/.config/quickshell/Brightness.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-pragma Singleton
-
-import Quickshell
-import Quickshell.Io
-import QtQuick
-
-Singleton {
- id: root
- property int brightness
-
- Process {
- command: ["brightctl", "-l"]
- running: true
- stdout: SplitParser {
- onRead: line => root.brightness = parseInt(line)
- }
- }
-}