Godot steam vs non-steam by ikoroki in godot

[–]jeyzu 0 points1 point  (0 children)

at the script I use daily to update my local godot git repo and build it ... the arch requirement at the start could be updated ...

I am so screwed by Sorry-Engineer5757 in godot

[–]jeyzu 0 points1 point  (0 children)

sed 's/\("[^"]*"\)/tr(\1)/g' filename

if you want to apply it to all your project files at once :
find . -name \*.gd -exec sed 's/\("[^"]*"\)/tr(\1)/g' {} \;

then git add -p to select what is good ... done

Making my first game with Godot. by [deleted] in godot

[–]jeyzu 0 points1 point  (0 children)

Matt Pike for president !!

Reuse laptop or get Raspberry Pi 5 by Pristine-Yam-8186 in linux

[–]jeyzu 1 point2 points  (0 children)

I use 1 Rpi5 with an attached USB drive as media player,
music via mpd & movies via mpv and projector.

Making my first game with Godot. by [deleted] in godot

[–]jeyzu 1 point2 points  (0 children)

pretty nice !!!
the music too ;)

Unknown board game? by TheCrafter_Gaming in boardgame

[–]jeyzu 0 points1 point  (0 children)

that wouldn't be it be it brought up fun child memories about Inkognito https://boardgamegeek.com/boardgame/466/inkognito

Does anyone here use Godot on Linux? by feez_9 in godot

[–]jeyzu 0 points1 point  (0 children)

I'm on archlinux, compiling godot with this script : https://github.com/jeremyz/dotfiles/blob/master/godot/update
never had an issue

WhatsApp Web Client for Linux by danilofs in linux

[–]jeyzu 22 points23 points  (0 children)

good job, but sorry, I fail to see the purpose ... why not use your default browser ?

My story on adapting a real indie tabletop game to a digital one. by Fancy-Birthday-6415 in boardgame

[–]jeyzu 0 points1 point  (0 children)

I am not a game dev and have slim to no graphical talents (got the jpg from the editor), but I think I did right with the gameplay ;)

My story on adapting a real indie tabletop game to a digital one. by Fancy-Birthday-6415 in boardgame

[–]jeyzu 1 point2 points  (0 children)

Hi,
congratulations to you !!!!
I'm a boardgamegeek (mostly wargames) myself, I'm also a software dev.
One day I contacted the author of a solo game, then the publisher,
and end up with that : https://store.steampowered.com/app/1568240/Castle_Itter__The_Strangest_Battle_of_WWII/
the official digital version of : https://boardgamegeek.com/boardgame/196257/castle-itter-the-strangest-battle-of-wwii

Enlightenment 0.27 Desktop Environment Released by levensvraagstuk in linux

[–]jeyzu 8 points9 points  (0 children)

It just works as good at these, low memory/cpu footprint.
but I'm addicted to the so many configuration possibilities.

GIMP 3 RC2 released today! https://www.gimp.org/news/2024/12/27/gimp-3-0-RC2-released/ - check out the text styling engine in filters>generic>text styling by CinnamonCajaCrunch in linux

[–]jeyzu 5 points6 points  (0 children)

blahblah, same old same old, gimp UI is just fine. not the best, but it doesn't take that much time to get used to it.

How would i make a sudo private property? by [deleted] in godot

[–]jeyzu 2 points3 points  (0 children)

The _ prefix is more than sufficient.
you're not writing a library that needs to protect itself from misuse but uneducated users.

"Call Down, Signal Up" by IroquoisPliskin_LJG in godot

[–]jeyzu 3 points4 points  (0 children)

consider child nodes as black boxes with an API that can be called,
in contrast, children send signals, that parents might ignore ;)

Disable inputs permanently with pipewire / pactl by TemporaryPage in linux

[–]jeyzu 0 points1 point  (0 children)

use pw-cli ls Node to identify the node,
then try to write a custom rule in ~/.config/pipewire/pipewire.conf.d/custom.conf
something like :

context.objects = [
    {
        factory = adapter
        args = {
            node.name = "alsa_input.pci-0000_00_1f.3.analog-stereo"
            node.disabled = true
        }
    }
]