Custom Lutris Game Banner Images

Filling in the blanks!

Custom Lutris Game Banner Images
Share on:

For those using the “Thunar” file manager in Linux โ€” I’ve written a small script which adds a custom action to Thunar. It uses ffmpeg to convert large screen grab images to the size required for Lutris game banners images.

For games that don’t have a banner, you can screenshot your own to your Pictures/ folder when the game is open, then convert the saved images for use as game banners with this script.

How to,

  1. Open your text editor of choice and copy and paste the following,
#!/bin/bash
# Creates a folder name declared in DEST.
# Converts images to Lutris banner size using ffmpeg. (184:69)

DEST="./Lutris_converted"
mkdir $DEST

# Pass files through ffmpeg and scale to new size, then save to DEST output folder.
for file
    do
    if [ ! -e $file ]
        then
        continue
    fi
    to_name="$DEST/"${file%.*}".jpg"
    ffmpeg -i "${file}" -vf scale=184:69 "${to_name}"
done
  1. Save the file as lutris_banner_images.sh to $HOME/.scripts/ folder. If that folder doesn’t exist, then simply create it.
  2. In Thunar, press “Ctrl H” to show hidden files, then locate the lutris_banner_images.sh file.
  3. Right-click on the file and select Properties > Permissions > (tick) “Allow this file to run as a program”, then press close.
  4. In Thunar, go to Edit > Configure custom actions, then press the + icon on the right of the window.**
  5. In the “Basic” tab, give your new action a name, “to Lutris banner size”, then enter a description.
  6. In the “Command” field, enter the location to the lutris_banner_images.sh file followed by %N

Example:

~/.scripts/lutris_banner_images.sh %N

  1. Choose an icon for the action if you wish.
  2. Click on the “Appearance” tab, set “File pattern” as * and tick the “Image Files” button. Press “OK” and “Close”.

Now, when you right-click on images you’d like to create to a Lutris banner, you will see your new custom action in the menu. Convert and use as you wish. Your converted images will appear in the Lutris_converted folder.

I hope this helps. ๐Ÿ˜ƒ