mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
feat : weekly update
This commit is contained in:
24
eww/script
24
eww/script
@@ -1,16 +1,17 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
datadir="/tmp/yt-music"
|
||||||
case $1 in
|
case $1 in
|
||||||
songdata)
|
songdata)
|
||||||
out=$(printf '{ "command": ["get_property", "pause"]}\n' | socat - /tmp/yt-music/yt-music-mpvsocket 2>/dev/null)
|
if [ -f "$datadir/current" ];then
|
||||||
if [ -n "$out" ] && pgrep -f mpvsocket >/dev/null 2>&1;then
|
out=$(printf '{ "command": ["get_property", "pause"]}\n' | socat - "$datadir/yt-music-mpvsocket" 2>/dev/null)
|
||||||
printf '{"name":"%s","artist":"%s","cover":"/tmp/yt-music/default.jpg","next":"%s","prev":"%s"}' "$(cut -d'>' -f1 < "/tmp/yt-music/current" | cut -d':' -f2- | sed 's|[^-]*$||;s|-$||;s| $||;s|^ ||')" "$(cut -d'>' -f1 < "/tmp/yt-music/current" | sed 's_.* - __;s| $||')" "$(sed -n "/$(cut -d'>' -f2 < /tmp/yt-music/current )/{n;p}" /tmp/yt-music/next | cut -f1)" "$(sed -n "$(cat /tmp/yt-music/counter)p" /tmp/yt-music/next | cut -f1)"
|
printf '{"name":"%s","artist":"%s","cover":"%s","next":"%s","prev":"%s"}' "$(cut -d'>' -f1 < "$datadir/current" | cut -d':' -f2- | sed 's|[^-]*$||;s|-$||;s| $||;s|^ ||')" "$(cut -d'>' -f1 < "$datadir/current" | sed 's_.* - __;s| $||')" "$datadir/default.jpg" "$(sed -n "/$(cut -d'>' -f2 < "$datadir/current" )/{n;p}" $datadir/next | cut -f1)" "$(sed -n "$(cat $datadir/counter)p" $datadir/next | cut -f1)"
|
||||||
else
|
else
|
||||||
printf '{"name":"OFFLINE","artist":"offline","cover":"%s/.config/eww/music.png"}' "$HOME"
|
printf '{"name":"OFFLINE","artist":"offline","cover":"%s/.config/eww/music.png"}' "$HOME"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
status)
|
status)
|
||||||
out=$(printf '{ "command": ["get_property", "pause"]}\n' | socat - /tmp/yt-music/yt-music-mpvsocket 2>/dev/null)
|
out=$(printf '{ "command": ["get_property", "pause"]}\n' | socat - "$datadir/yt-music-mpvsocket" 2>/dev/null)
|
||||||
if [ -z "$out" ];then
|
if [ -z "$out" ];then
|
||||||
printf ""
|
printf ""
|
||||||
elif printf "%s" "$out" | grep -q "true";then
|
elif printf "%s" "$out" | grep -q "true";then
|
||||||
@@ -20,29 +21,26 @@ case $1 in
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
lyrics)
|
lyrics)
|
||||||
if [ -f "/tmp/yt-music/lyrics" ]; then
|
if [ -f "$datadir/lyrics" ]; then
|
||||||
awk -F'\t' -v value="$(echo '{ "command": ["get_property", "time-pos"] }' | socat - /tmp/yt-music/yt-music-mpvsocket | sed -nE 's|.*data":([^,]*).*|\1|p')" '$1 > value*1000 {print $2;exit}' /tmp/yt-music/lyrics
|
awk -F'\t' -v value="$(echo '{ "command": ["get_property", "time-pos"] }' | socat - "$datadir/yt-music-mpvsocket" | sed -nE 's|.*data":([^,]*).*|\1|p')" '$1 > value*1000 {print $2;exit}' "$datadir/lyrics"
|
||||||
else
|
else
|
||||||
printf "Lyrics will show here"
|
printf "Lyrics will show here"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
time)
|
time)
|
||||||
out=$(echo '{"command" :["get_property" , "percent-pos"]}' | socat - /tmp/yt-music/yt-music-mpvsocket 2>/dev/null | sed -nE 's_.*data":([^,]*).*_\1_p')
|
out=$(echo '{"command" :["get_property" , "percent-pos"]}' | socat - "$datadir/yt-music-mpvsocket" 2>/dev/null | sed -nE 's_.*data":([^,]*).*_\1_p')
|
||||||
printf '%s' "${out:-100}"
|
printf '%s' "${out:-100}"
|
||||||
;;
|
;;
|
||||||
play_toggle)
|
play_toggle)
|
||||||
echo cycle pause | socat - "/tmp/yt-music/yt-music-mpvsocket"
|
echo cycle pause | socat - "$datadir/yt-music-mpvsocket"
|
||||||
;;
|
;;
|
||||||
next)
|
next)
|
||||||
pgrep -f mpvsocket >/dev/null 2>&1 && "$HOME/repos_scripts/yt-music" play_next
|
pgrep -f mpvsocket >/dev/null 2>&1 && "$HOME/repos_scripts/yt-music" play_next
|
||||||
;;
|
;;
|
||||||
next_song)
|
|
||||||
sed -n "$(cat /tmp/yt-music/counter){n;p}" /tmp/yt-music/next | cut -f1
|
|
||||||
;;
|
|
||||||
prev)
|
prev)
|
||||||
pgrep -f mpvsocket >/dev/null 2>&1 && counter=$(cat /tmp/yt-music/counter) && [ "$counter" -gt 0 ] && "$HOME/repos_scripts/yt-music" play "$(sed -n "${counter}p" /tmp/yt-music/next)" && printf "%s" "$((counter-1))" > /tmp/yt-music/counter &
|
pgrep -f mpvsocket >/dev/null 2>&1 && counter=$(cat "$datadir/counter") && [ "$counter" -gt 0 ] && "$HOME/repos_scripts/yt-music" play "$(sed -n "${counter}p" "$datadir/next")" && printf "%s" "$((counter-1))" > "$datadir/counter" &
|
||||||
;;
|
;;
|
||||||
seek)
|
seek)
|
||||||
echo "{\"command\" :[\"seek\" ,\"$2\",\"relative-percent\"]}" | socat - /tmp/yt-music/yt-music-mpvsocket
|
echo "{\"command\" :[\"seek\" ,\"$2\",\"relative-percent\"]}" | socat - "$datadir/yt-music-mpvsocket"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
monitor=,preferred,auto,1
|
monitor=,highrr,auto,1
|
||||||
$hypr_dir="$HOME/.config/hypr"
|
$hypr_dir="$HOME/.config/hypr"
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||||
@@ -172,5 +172,5 @@ exec-once=cd $HOME/github/arrpc && node src > /tmp/arrpc-log
|
|||||||
exec-once=swaybg -i $HOME/.config/wall/12.jpg
|
exec-once=swaybg -i $HOME/.config/wall/12.jpg
|
||||||
exec-once=xrdb -merge $HOME/.config/.Xresource
|
exec-once=xrdb -merge $HOME/.config/.Xresource
|
||||||
exec-once=$hypr_dir/workspace 'focus'
|
exec-once=$hypr_dir/workspace 'focus'
|
||||||
exec-once=sleep 5 && $hypr_dir/workspace
|
exec-once=sleep 2 && $hypr_dir/workspace
|
||||||
exec-once=sleep 2 && google-chrome-stable 'https://web.skype.com/?openPstnPage=true'
|
exec-once=sleep 2 && google-chrome-stable 'https://web.skype.com/?openPstnPage=true'
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
setup_dual_monitor() {
|
setup_dual_monitor() {
|
||||||
sed -i "s/monitor=,1920x1080,0x0,1,mirror,eDP-1/monitor=,preferred,auto,1/g" "$HOME/.config/hypr/hyprland.conf"
|
sed -i "s/monitor=,1920x1080,0x0,1,mirror,eDP-1/monitor=,highrr,auto,1/g" "$HOME/.config/hypr/hyprland.conf"
|
||||||
sleep 2
|
sleep 2
|
||||||
if hyprctl monitors | grep -q "HDMI-A-1"; then
|
if hyprctl monitors | grep -q "HDMI-A-1"; then
|
||||||
notify-send "Setting up dual monitor workflow"
|
notify-send "Setting up dual monitor workflow"
|
||||||
@@ -29,10 +29,13 @@ handle_it(){
|
|||||||
case $1 in
|
case $1 in
|
||||||
list)
|
list)
|
||||||
#only lists the open applications with their workspace number so u can safely close them
|
#only lists the open applications with their workspace number so u can safely close them
|
||||||
for i in $(seq 4);do
|
i=4
|
||||||
|
while [ $i -gt 0 ]; do
|
||||||
notify-send -i "lol" "$(hyprctl clients | sed -nE 's_.*class: ([^ ]*).*_\1_p;s_.*workspace: ([^ ]*).*_workspace \1 : _p' | sed 'N;s/\n/ /')" -h "string:x-canonical-private-synchronous:${0##*/}" -t 1500
|
notify-send -i "lol" "$(hyprctl clients | sed -nE 's_.*class: ([^ ]*).*_\1_p;s_.*workspace: ([^ ]*).*_workspace \1 : _p' | sed 'N;s/\n/ /')" -h "string:x-canonical-private-synchronous:${0##*/}" -t 1500
|
||||||
|
: $((i -= 1))
|
||||||
sleep 1
|
sleep 1
|
||||||
done ;;
|
done
|
||||||
|
;;
|
||||||
focus)
|
focus)
|
||||||
#shows the workspace number as notification whenever u switch workspaces and also handles the dual monitor setup on the fly(perfect for laptop users)
|
#shows the workspace number as notification whenever u switch workspaces and also handles the dual monitor setup on the fly(perfect for laptop users)
|
||||||
socat - "UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" | while read -r line; do
|
socat - "UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" | while read -r line; do
|
||||||
@@ -44,12 +47,15 @@ case $1 in
|
|||||||
cat /tmp/workcurr >/tmp/workprev
|
cat /tmp/workcurr >/tmp/workprev
|
||||||
printf "%s" "$current" >/tmp/workcurr
|
printf "%s" "$current" >/tmp/workcurr
|
||||||
fi
|
fi
|
||||||
notify-send -i "lol" "$(printf "%s" "$line" | sed -nE 's_^(workspace)>>([^ ]*)_\1 \2_p')" -h 'string:x-canonical-private-synchronous:monitor' -t 700 2>/dev/null
|
notify-send -i "lol" "$(printf "%s" "$line" | sed -nE 's_^(workspace)>>([^ ]*)_\1 \2_p')" -h "string:x-canonical-private-synchronous:monitor" -t 700 2>/dev/null
|
||||||
done ;;
|
done
|
||||||
|
;;
|
||||||
toggle)
|
toggle)
|
||||||
#toggle between mirror and extend setup. this function should be keybinded
|
#toggle between mirror and extend setup. this function should be keybinded
|
||||||
handle_it ;;
|
handle_it
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
#to be executed once after booting to setup dual montiors by default if the monitor is connected
|
#to be executed once after booting to setup dual montiors by default if the monitor is connected
|
||||||
setup_dual_monitor ;;
|
setup_dual_monitor
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user