Compare commits
2 Commits
6cf0395584
...
be47278110
Author | SHA1 | Date |
---|---|---|
Trevor Vallender | be47278110 | |
Trevor Vallender | 475fab115d |
1
.bashrc
1
.bashrc
|
@ -9,6 +9,7 @@ LC_ALL="en_GB.UTF-8"
|
|||
|
||||
export DIP=false
|
||||
export HYPRSHOT_DIR=/home/tsv/img/screenshots
|
||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/openssl-1.0.2u/lib
|
||||
|
||||
# Sane defaults for history
|
||||
HISTFILE=$XDG_STATE_HOME/.bash_history
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
# section for how to disable this if necessary
|
||||
idle_threshold = 120
|
||||
|
||||
font = Monospace 14
|
||||
font = Monospace 12
|
||||
line_height = 0
|
||||
|
||||
# Possible values are:
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
(defwidget sidestuff []
|
||||
(box :class "sidestuff" :orientation "h" :space-evenly false :halign "end"
|
||||
(metric :label ""
|
||||
:value volume
|
||||
:onchange "amixer -D pulse sset Master {}%")
|
||||
:value { volume * 100 }
|
||||
:onchange "VOL=$(bc -l <<<\"scale=2; {} / 100\") ; wpctl set-volume @DEFAULT_AUDIO_SINK@ $VOL")
|
||||
(metric :label ""
|
||||
:value {EWW_RAM.used_mem_perc}
|
||||
:onchange "")
|
||||
|
|
|
@ -1,12 +1,3 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if command -v pamixer &>/dev/null; then
|
||||
if [ true == $(pamixer --get-mute) ]; then
|
||||
echo 0
|
||||
exit
|
||||
else
|
||||
pamixer --get-volume
|
||||
fi
|
||||
else
|
||||
amixer -D pulse sget Master | awk -F '[^0-9]+' '/Left:/{print $3}'
|
||||
fi
|
||||
wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2}'
|
||||
|
|
|
@ -8,6 +8,7 @@ windowrule = workspace 2, thunderbird
|
|||
|
||||
exec-once = eww daemon && eww open bar
|
||||
exec-once = qutebrowser
|
||||
exec-once = firefox
|
||||
exec-once = thunderbird
|
||||
exec-once = dunst & hyprpaper & kitty
|
||||
|
||||
|
|
Loading…
Reference in New Issue