1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Compare commits

..

4 Commits

5 changed files with 31 additions and 50 deletions

View File

@ -45,7 +45,9 @@ A repository of my personal configuration files.
- [[https://github.com/cylgom/ly][Ly]]
- [[https://github.com/internalfx/mailcap][mailcap]]
- [[https://mpv.io/][mpv]]
- [[https://github.com/cdemoulins/pamixer][pamixer]]
- [[https://github.com/dylanaraps/pfetch][pfetch]]
- [[https://www.freedesktop.org/wiki/Software/PulseAudio/][Pulseaudio]]
- [[https://github.com/dylanaraps/pywal][pywal]]
- [[http://www.gnu.org/software/stow/][stow]]
- [[https://www.python.org/][Python]]

View File

@ -1,32 +1,35 @@
#!/usr/bin/env bash
# This is a very hacky way of doing this. Default sink for desktop is 0 and for laptop is 3. Kies de eerste de beste die werkt
if pamixer --list-sinks | grep -q "^0"; then
sink=0
elif pamixer --list-sinks | grep -q "^3"; then
sink=3
fi
if [ "$1" == "inc" ]; then
amixer -q sset Master 5%+
pactl -- set-sink-volume "$sink" +5%
fi
if [ "$1" == "dec" ]; then
amixer -q sset Master 5%-
pactl -- set-sink-volume "$sink" -5%
fi
if [ "$1" == "mute" ]; then
amixer -q sset Master toggle
pactl -- set-sink-mute "$sink" toggle
fi
AMIXER=$(amixer sget Master)
VOLUME=$(echo "$AMIXER" | grep 'Mono\|Front Right:' | awk -F'[][]' '{ print $2 }' | tr -d "%")
MUTE=$(echo "$AMIXER" | grep -o '\[off\]' | tail -n 1)
if [ "$MUTE" == "[off]" ]; then
ICON=audio-volume-muted
VOLUME=$(pamixer --sink "$sink" --get-volume)
if [ "$(pamixer --sink "$sink" --get-mute)" == "true" ]; then
ICON=audio-volume-muted
elif [ "$VOLUME" -le 20 ]; then
ICON=audio-volume-low
ICON=audio-volume-low
elif [ "$VOLUME" -le 60 ]; then
ICON=audio-volume-medium
ICON=audio-volume-medium
else
ICON=audio-volume-high
ICON=audio-volume-high
fi
notify-send.py "Volume" "$VOLUME/100" \
--hint string:image-path:$ICON boolean:transient:true \
--replaces-process "volume-popup"
--hint string:image-path:$ICON boolean:transient:true \
--replaces-process "volume-popup" &

View File

@ -3,7 +3,7 @@ ttrss-url "https://rss.higherlearning.eu/
ttrss-flag-star "s"
ttrss-flag-publish "p"
ttrss-login "alrayyes"
ttrss-passwordeval "getpassword rss"
ttrss-passwordeval "~/.local/bin/getpassword rss"
show-read-feeds no
show-read-articles no

View File

@ -6,8 +6,4 @@ pgrep -f newsboat > /dev/null && exit
# Needed for notify-send to work
export DISPLAY=":0.0"
notify-send.py --replaces-process update-feeds -a Newsboat -i rssowl "Rss" "Updating feeds" &
/usr/bin/newsboat -x reload
notify-send.py --replaces-process update-feeds -a Newsboat -i rssowl "Rss" "Feed update copmlete" &

View File

@ -14,6 +14,7 @@ foreground-alt = ${xrdb:color7:#222}
primary = ${xrdb:color1:#222}
secondary = ${xrdb:color2:#222}
alert = ${xrdb:color3:#222}
disabled = #666
[bar/base]
background = ${colors.background}
@ -205,7 +206,7 @@ format-disconnected =
format-connected-prefix = "直 "
format-disconnected-prefix = "睊 "
label-connected = "%local_ip%  %downspeed%  %upspeed%"
label-connected = " %downspeed%  %upspeed%"
label-disconnected =
animation-packetloss-0 = ⚠
@ -246,36 +247,15 @@ label = %date% %time%
label-padding-right=1
[module/volume]
type = internal/alsa
type = internal/pulseaudio
sink = alsa_output.pci-0000_00_1b.0.iec958-stereo
format-volume = <label-volume>
label-volume = 蓼 %percentage%%
label-volume-foreground = ${root.foreground}
format-muted-prefix =
format-muted-foreground = ${colors.foreground-alt}
label-muted = "遼"
label-muted-foreground = ${colors.disabled}
bar-volume-width = 10
bar-volume-foreground-0 = #55aa55
bar-volume-foreground-1 = #55aa55
bar-volume-foreground-2 = #55aa55
bar-volume-foreground-3 = #55aa55
bar-volume-foreground-4 = #55aa55
bar-volume-foreground-5 = #f5a70a
bar-volume-foreground-6 = #ff5555
bar-volume-gradient = false
bar-volume-indicator = |
bar-volume-indicator-font = 2
bar-volume-fill = ─
bar-volume-fill-font = 2
bar-volume-empty = ─
bar-volume-empty-font = 2
bar-volume-empty-foreground = ${colors.foreground-alt}
ramp-volume-0 = 
ramp-volume-1 = 
ramp-volume-2 = 
click-right = pavucontrol &
[module/volume-laptop]
type = internal/pulseaudio
@ -284,7 +264,7 @@ sink = alsa_output.pci-0000_00_1f.3.analog-stereo
label-volume = 蓼 %percentage%%
label-muted = "遼"
label-muted-foreground = #666
label-muted-foreground = ${colors.disabled}
click-right = pavucontrol &