Xfce Forum

Sub domains
 

You are not logged in.

#1 2022-09-07 21:09:07

fixit
Member
Registered: 2015-01-19
Posts: 129

Custom action problem

I have this as a custom action.

It is not quite working right.

convert -resize 1024X768 %f %fsmaller.png

I need the original file name with smaller appended to it.


small_OA_How_Food_Portions.pngsmaller.png

I do not need the "smaller.png" part at the end.

Thanks.

Last edited by fixit (2022-09-07 21:12:05)


Ubuntu-Mate 24.04

Offline

#2 2022-09-07 23:34:09

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,485

Re: Custom action problem

I can't get this to fit inline, so you'll need to create a script with the following content:

#!/bin/bash

convert -resize 1024X768 $1 ${1%.*}smaller.${1#*.}

...and make the script executable.

Then in the custom action, make the command "/path/to/script %f" where /path/to/script is the full path and script name.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#3 2022-09-08 01:41:00

fixit
Member
Registered: 2015-01-19
Posts: 129

Re: Custom action problem

Thanks for your help.


Ubuntu-Mate 24.04

Offline

Registered users online in this topic: 0, guests: 1
[Bot] ClaudeBot

Board footer

Powered by FluxBB
Modified by Visman

[ Generated in 0.007 seconds, 7 queries executed - Memory usage: 519.33 KiB (Peak: 520.17 KiB) ]