Greedy Player

greedy-player Download greedy-player Link : https://github.com/samanweb/greedy-player.git Key Features Play/Pause Controls: Easily start or pause audio playback with a click of a button. Volume Control: Adjust the audio volume using the built-in volume control button, which also supports muting. Progress Bar: Visualize the progress of the audio playback with a dynamic progress bar. Remaining Time Display: Stay informed about the remaining time of the audio track with a clear and user-friendly display....

December 16, 2023 · 2 min · 253 words · Saman Wijesinghe

Convert into .webp

Installing cwebp sudo apt update sudo apt install webp Fedora cwebp sudo dnf install libwebp-tools Open Suse sudo zypper install libwebp-tools Arch u sudo pacman -S base-devel git clone https://aur.archlinux.org/libwebp.git cd libwebp makepkg -si Convert JPG and PNG to WEBP for file in *.jpg *.png; do cwebp "$file" -o "${file%.*}.webp" done

October 8, 2023 · 1 min · 51 words · Saman