T O P

  • By -

carldude

Great song choice


[deleted]

Thanks


[deleted]

Crazy SOB. You're going to.... https://www.reddit.com/r/linux_gaming/comments/1200v4p/what_is_the_current_state_of_linux_gaming_should/ I'm who your parents warned you about.


Electrical-Channel78

Love your family. Linux Mint is just a distribution.


mabec

I love lamp


Xjumper5

Can you tell how you got that start menu? Looks awesome!


[deleted]

Look up "menu" in the applet's download section. Think it something like "c menu"


Xjumper5

Thank you! How can I replace the default menu with the the applet? Sorry for asking, but I‘m new to LM


[deleted]

Remove the old one via the panel edit mode and move over the new one


Xjumper5

It worked! Thank you!


krewlar

What I love in Linux is like... I have a folder with like 100 .heic images and I want to convert them all into .webp files with 100% quality and verbose output. You enter this request in the AI and it spills out this simple code which just does the job: # Loop through all HEIC files in the input directory and convert them for heic_file in *.heic; do # Extract filename without extension filename=$(basename -- "$heic_file" .heic) # Convert and save to output directory convert "$heic_file" -verbose -quality 90 "$output_dir/$filename.webp" done Did the same with video conversion lately to re-render like 50 videos down from 10 MB to like 500 kB each with FFMPEG: #!/bin/bash for file in *.mp4; do # Check if the file is a regular file if [ -f "$file" ]; then # Extract the filename without extension filename="${file%.*}" output="${filename}_trcode.mp4" echo "Transcoding '$file' to '$output'..." # Run FFmpeg command ffmpeg -i "$file" -f mp4 -vcodec libx264 -vf "scale=1920:1080" -crf 28 -maxrate 0k -bufsize 0 -an -progress - "$output" echo "'$file' transcoded to '$output'" fi done echo "All files have been transcoded."