tomatoely

joined 8 months ago
[–] tomatoely 1 points 2 days ago

Isn't that what openGL and vulkan aim for?

[–] tomatoely 10 points 3 days ago

So ZQ comes from the sound of a fly being swatted?

[–] tomatoely 4 points 1 week ago

I've got to try #1

 
[–] tomatoely 4 points 1 week ago

He's not your buddy, friend!

[–] tomatoely 1 points 2 weeks ago

ooo that looks nice! I'll try it once I need to unrust my script skills again, thanks for the help!

[–] tomatoely 2 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

It's fixed now! At first I researched a little more and found about the desktop-file-validate cli utility from the desktop-file-utils package, and it did tell me a lot about the syntax errors I was making with the exec command.

But as you wisely suggested, dealing with those escaping rules was a bit too bothersome for my use case, so I ended going the bash script route which worked flawlessly at last! So thank you for pointing that out!

Here's the final .desktop file for anyone interested:

[Desktop Entry]
Type=Service
MimeType=image/png;image/jpg;image/jpeg;image/ico;image/heic;image/svg+xml;image/webp;
Actions=topng;tojpg;toico;towebp
X-KDE-Submenu=Convert Image Format
Icon=viewimage

[Desktop Action topng]
Name=To Png
Exec=/home/myuser/.local/share/kio/servicemenus/scripts/convert-image.sh %f png
Icon=viewimage

[Desktop Action tojpg]
Name=To Jpg
Exec=/home/myuser/.local/share/kio/servicemenus/scripts/convert-image.sh %f jpg
Icon=viewimage

[Desktop Action toico]
Name=To Ico
Exec=/home/myuser/.local/share/kio/servicemenus/scripts/convert-image.sh %f ico
Icon=viewimage

[Desktop Action towebp]
Name=To Webp
Exec=/home/myuser/.local/share/kio/servicemenus/scripts/convert-image.sh %f webp
Icon=viewimage

and the bash script coupled with it:

#!/bin/bash

FILE="${1}"
FORMAT="${2}"

# Check if magick is installed
if ! command -v magick &> /dev/null; then
    echo "Error: magick command not found. Please install ImageMagick."
    exit 1
fi

# Check if FILE exists
if [[ ! -f "$FILE" ]]; then
    echo "File not found: $FILE"
    exit 1
fi

DIRECTORY=$(dirname "$FILE")
# Get the file name by looking for the longest match starting from the beginning of the string up to the last dot.
FILENAME=$(basename "$FILE" .${FILE##*.})

# Convert the file format using magick
magick "$FILE" -format "$FORMAT" "$DIRECTORY/$FILENAME.$FORMAT"

[–] tomatoely 1 points 2 weeks ago (4 children)

If I understood correctly, I made the changes as you said like this:

Exec=sh -c "FILE=\"%f\"; DIRECTORY=\"$(dirname \"$FILE\")\"; FILENAME=\"${FILE%.*}\"; magick \"$FILE\" -format png \"$DIRECTORY/$FILENAME.png\""

Now when I click on the service menu option this error popup appears:

Syntax error in command sh -c "FILE=%f; DIRECTORY=$(dirname $FILE); FILENAME=${FILE%.*}; magick $FILE\ -format png $DIRECTORY/$FILENAME.png" coming from

It seems escaping the double quotes doesn't actually escape the backlash with it?

I then tried escaping those new backlashes like this

Exec=sh -c "FILE=\\"%f\\"; DIRECTORY=\\"$(dirname \\"$FILE\\")\\"; FILENAME=\\"${FILE%.*}\\"; magick \\"$FILE\\" -format png \\"$DIRECTORY/$FILENAME.png\\""

and now Dolphin doesnt complain about syntax, but the new converted image doesn't get made :(

 

Hi everyone! I recently created a custom service menu for the Dolphin file manager, but unfortunately, it doesn't seem to be working as expected.

My goal is to have a menu to convert image file formats quickly with image magick.

Here is the .desktop file I managed to arrange

[Desktop Entry]
Type=Service
Name=Convert Image
Icon=gtk-convert
MimeType=image/png;image/jpg;image/jpeg;image/ico;image/heic;image/svg;image/webp;
Actions=topng;tojpg;toico;towebp
X-KDE-Submenu=Convert Image

[Desktop Action topng]
Name=To Png
Exec=sh -c 'FILE="%f"; DIRECTORY="$(dirname $FILE)"; FILENAME="${FILE%.*}"; magick "$FILE" -format png "$DIRECTORY/$FILENAME.png"'

[Desktop Action tojpg]
Name=To Jpg
Exec=sh -c 'FILE="%f"; DIRECTORY="$(dirname $FILE)"; FILENAME="${FILE%.*}"; magick "$FILE" -format jpg "$DIRECTORY/$FILENAME.jpg"'

[Desktop Action toico]
Name=To Ico
Exec=sh -c 'FILE="%f"; DIRECTORY="$(dirname $FILE)"; FILENAME="${FILE%.*}"; magick "$FILE" -format ico "$DIRECTORY/$FILENAME.ico"'

[Desktop Action towebp]
Name=To Webp
Exec=sh -c 'FILE="%f"; DIRECTORY="$(dirname $FILE)"; FILENAME="${FILE%.*}"; magick "$FILE" -format webp "$DIRECTORY/$FILENAME.webp"'

When I right-click on an image my custom menu item appears as expected. However, when I click on the menu item, nothing happens. There are no error messages or any indication of what might be going wrong.

I made sure the .desktop file is executable and the sh script works when using it on the command line, so I'm out of ideas for what could be going wrong.

Are there any logs I can check to get more information about what's failing? I'm using plasma 6.3.3 on Arch btw

Edit: To answer how to troubleshoot custom service menus (specifically .desktops) the desktop-file-validate cli utlility checks all the syntax errors and can provide solutions to what's wrong. For my use case though, using a script file for the Exec line and avoiding any double quotes was the practical way of assuring my service menu works.

 

Actually vlogging before it were even a thing!

[–] tomatoely 4 points 2 weeks ago

For anyone wanting to relive the minecraft 7th gen console experience on PC, I suggest you give the Legacy4J mod a try, specially with the Re-Console Modpack. I had lots of fun revisiting the old tutorial worlds

[–] tomatoely 2 points 3 weeks ago

Source is Holyland, by Mori Kouji

[–] tomatoely 3 points 3 weeks ago

Haha, I'm in a better position now thankfully. It just caught me by surprise how I could relate to that page from time to time.

36
anime_irl (sh.itjust.works)
 
[–] tomatoely 2 points 1 month ago

It probably has seen better days...

65
Sweet Poinktato (sh.itjust.works)
submitted 1 month ago by tomatoely to c/pareidolia
 
[–] tomatoely 2 points 2 months ago
 
 

Artículo viejo pero más relevante que nunca en nuestra lengua. Yo estoy de acuerdo con lo que dice, dentro de cien años lo más probable es que quede como una reliquia del pasado. Teniendo en cuenta además lo flexible que es la RAE con el uso del idioma, tampoco creo que vaya a haber mucha oposición al cambio.

 

As Google tries to hinder ad-block extensions with their new platform Manifest V3, it seems to me Chrome or any Chromium derivatives are no longer a viable way to browse the web safely. So it got me wondering, how much big of a task would it be to still suport Manifest V2 on newer releases of Chromium? Maybe implement some legacy option for backwards compatibility with older extensions. I think it would be a great alternative to have, but I haven't seen anyone coming up with something similar.

view more: next ›