diff --git a/.config/scripts/MediaCtrl.sh b/.config/scripts/MediaCtrl.sh index 06986dd..1b32886 100755 --- a/.config/scripts/MediaCtrl.sh +++ b/.config/scripts/MediaCtrl.sh @@ -2,13 +2,11 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Playerctl -iconPath="/usr/share/icons/Qogir/24/actions" - -nextIcon="$iconPath/gtk-media-next-ltr.svg" -previousIcon="$iconPath/gtk-media-previous-ltr.svg" -stopIcon="$iconPath/gtk-media-stop.svg" -playIcon="$iconPath/gtk-media-play-ltr.svg" -pauseIcon="$iconPath/gtk-media-pause.svg" +nextIcon="gtk-media-next-ltr" +previousIcon="gtk-media-previous-ltr" +stopIcon="gtk-media-stop" +playIcon="gtk-media-play-ltr" +pauseIcon="gtk-media-pause" # Play the next track play_next() { diff --git a/.config/scripts/NotifyHour.sh b/.config/scripts/NotifyHour.sh index 68ccfa6..3bc221f 100755 --- a/.config/scripts/NotifyHour.sh +++ b/.config/scripts/NotifyHour.sh @@ -2,7 +2,7 @@ currentHour=$(date +"%H") -notify-send --icon "/usr/share/icons/Gruvbox-Material-Dark/16x16/actions/amarok_clock.svg" \ +notify-send --icon "amarok_clock" \ --app-name="Current Hour" \ "Ding Dong..." \ "It's currently: ${currentHour}:00" diff --git a/.config/scripts/ScreenShot.sh b/.config/scripts/ScreenShot.sh index 136d519..82da1dd 100755 --- a/.config/scripts/ScreenShot.sh +++ b/.config/scripts/ScreenShot.sh @@ -10,7 +10,7 @@ active_window_class=$(hyprctl -j activewindow | jq -r '(.class)') active_window_file="Screenshot_${time}_${active_window_class}.png" active_window_path="${dir}/${active_window_file}" -notify_cmd_base="notify-send -t 10000 -A action1=Open -A action2=Delete -h string:x-canonical-private-synchronous:shot-notify" +notify_cmd_base="notify-send -i "shoot" -t 10000 -A action1=Open -A action2=Delete -h string:x-canonical-private-synchronous:shot-notify" #notify_swappy="notify-send -h string:x-canonical-private-synchronous:shot-notify -u low -i ${iDIR}/picture.png" notify_cmd_shot="${notify_cmd_base}" notify_cmd_shot_win="${notify_cmd_base}" diff --git a/.config/scripts/Volume.sh b/.config/scripts/Volume.sh index a6d962f..68564b8 100755 --- a/.config/scripts/Volume.sh +++ b/.config/scripts/Volume.sh @@ -19,13 +19,13 @@ get_volume() { get_icon() { current=$(get_volume) if [[ "$current" == "Muted" ]]; then - echo "$iDIR/audio-volume-muted.svg" + echo "audio-volume-muted" elif [[ "${current%\%}" -le 30 ]]; then - echo "$iDIR/audio-volume-low.svg" + echo "audio-volume-low" elif [[ "${current%\%}" -le 60 ]]; then - echo "$iDIR/audio-volume-medium.svg" + echo "audio-volume-medium" else - echo "$iDIR/audio-volume-high.svg" + echo "audio-volume-high" fi } @@ -60,7 +60,7 @@ dec_volume() { # Toggle Mute toggle_mute() { if [ "$(pamixer --get-mute)" == "false" ]; then - pamixer -m && notify-send -e -u low -i "$iDIR/audio-volume-muted.svg" " Mute" + pamixer -m && notify-send -e -u low -i "audio-volume-muted" " Mute" elif [ "$(pamixer --get-mute)" == "true" ]; then pamixer -u && notify-send -e -u low -i "$(get_icon)" " Volume:" " Switched ON" fi @@ -69,18 +69,18 @@ toggle_mute() { # Toggle Mic toggle_mic() { if [ "$(pamixer --default-source --get-mute)" == "false" ]; then - pamixer --default-source -m && notify-send -e -u low -i "$iDIR/microphone-mute.png" " Microphone:" " Switched OFF" + pamixer --default-source -m && notify-send -e -u low -i "microphone-mute" " Microphone:" " Switched OFF" elif [ "$(pamixer --default-source --get-mute)" == "true" ]; then - pamixer -u --default-source u && notify-send -e -u low -i "$iDIR/microphone.png" " Microphone:" " Switched ON" + pamixer -u --default-source u && notify-send -e -u low -i "microphone" " Microphone:" " Switched ON" fi } # Get Mic Icon get_mic_icon() { current=$(pamixer --default-source --get-volume) if [[ "$current" -eq "0" ]]; then - echo "$iDIR/microphone-mute.png" + echo "microphone-mute" else - echo "$iDIR/microphone.png" + echo "microphone" fi } diff --git a/.config/supersonic/config.toml b/.config/supersonic/config.toml index 03527f6..9ec1d28 100644 --- a/.config/supersonic/config.toml +++ b/.config/supersonic/config.toml @@ -2,7 +2,7 @@ WindowWidth = 2051 WindowHeight = 1424 LastCheckedVersion = 'v0.14.0' -LastLaunchedVersion = 'v0.15.2' +LastLaunchedVersion = 'v0.16.0' EnableSystemTray = true CloseToSystemTray = false StartupPage = 'Albums' @@ -23,6 +23,7 @@ Language = 'auto' DisableDPIDetection = false EnableAutoUpdateChecker = true RequestTimeoutSeconds = 15 +EnableOSMediaPlayerAPIs = true FontNormalTTF = '' FontBoldTTF = '' UIScaleSize = 'Normal' @@ -58,6 +59,9 @@ InitialView = 'Albums' TracklistColumns = ['Album', 'Time', 'Plays'] ShowAlbumYears = false +[GridView] +CardSize = 200.0 + [PlaylistPage] TracklistColumns = ['Album', 'Time', 'Plays'] @@ -68,7 +72,7 @@ InitialView = 'List' TracklistColumns = ['Album', 'Time', 'Plays'] [NowPlayingConfig] -InitialView = 'Play Queue' +InitialView = 'Lyrics' [Playback] Autoplay = false @@ -95,6 +99,9 @@ PreventClipping = true [Transcoding] ForceRawFile = false +RequestTranscode = false +Codec = 'opus' +MaxBitRateKBPS = 160 [Theme] ThemeFile = '' diff --git a/.config/swaync/config.json b/.config/swaync/config.json index 5b2644e..cce6534 100644 --- a/.config/swaync/config.json +++ b/.config/swaync/config.json @@ -2,7 +2,6 @@ "$schema": "/etc/xdg/swaync/configSchema.json", "positionX": "right", "positionY": "top", - "layer": "top", "widgets": [ "inhibitors", "title",