summaryrefslogtreecommitdiffstats
path: root/eww/src/focal/audioSliders.yuck
diff options
context:
space:
mode:
Diffstat (limited to 'eww/src/focal/audioSliders.yuck')
-rw-r--r--eww/src/focal/audioSliders.yuck47
1 files changed, 0 insertions, 47 deletions
diff --git a/eww/src/focal/audioSliders.yuck b/eww/src/focal/audioSliders.yuck
deleted file mode 100644
index 8f4fb50..0000000
--- a/eww/src/focal/audioSliders.yuck
+++ /dev/null
@@ -1,47 +0,0 @@
-(defwidget audioSliders []
- (box :space-evenly false :class 'audioSliders'
-
- ; Master
- (box :orientation 'v' :class 'addPadding'
- (label :text '' :class 'audioIcon')
- (metric
- :class 'masterSlider'
- :value master_vol
- :onchange "amixer set Master {}%"
- :orientation 'v'
- :flipped true
- )
- )
-
- ; Headphone
- (box :orientation 'v' :class 'addPadding'
- (label :text '' :class 'audioIcon')
- (metric
- :class 'headphoneSlider'
- :value head_vol
- :onchange "amixer set Headphone {}%"
- :orientation 'v'
- :flipped true
- ))
-
- ; Mic
- (box :orientation 'v' :class 'addPadding'
- (label :text '' :class 'audioIcon')
- (metric
- :class 'micSlider'
- :value mic_vol
- :onchange "amixer set Mic {}%"
- :orientation 'v'
- :flipped true
- ))
-
- (box :orientation 'v' :class 'pkgsBox'
- (progressBar
- :value battery
- :text ''
- :class 'battery'
- )
- ; package count
- (label :text ' ${pkgs} pkgs' :class 'pkgs')
- )
- ))