con-images-to-webp convert to webp

Prerequisites Make sure you have ImageMagick installed on your system. If not, you can install it using the following commands: For Debian-based systems: sudo apt install imagemagick For Arch-based systems: sudo pacman -S imagemagick Usage Clone this repository or download the con-images-to-webp.sh script. git clone https://github.com/samanweb/con-images-to-webp.git Copy all images you want convert to webp to con-images-to-webp directory Run the script: cd con-images-to-webp ./con-images-to-webp.sh The script will convert all .jpg, .jpeg, and ....

April 12, 2024 · 1 min · 121 words · Saman Wijesinghe

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

Instance Info

Download : https://github.com/samanweb/instance-info.git Code By : Saman Wijseinghe Version : 1.0 License : GNU GENERAL PUBLIC LICENSE Platform : Arch Linux or Linux compatible distributions The “Instance Info” tool is a simple Bash script that provides an interactive way to access key system information on your computer. With a user-friendly menu, it allows you to effortlessly view details about your system’s RAM, hard disk, battery (if available), and processor. Additionally, the tool offers an “About” option to provide a brief introduction to itself, making it a handy utility for quickly accessing essential system data....

November 5, 2023 · 1 min · 104 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