m5l.eu is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Site description
Yet another single-user instance
Admin account
@marek@m5l.eu

Search results for tag #qt

AodeRelay boosted

[?]matthew - retroedge.tech ยป 🌐
@matthew@social.retroedge.tech

I am not particularly happy with either gtk or qt, but I'll be taking a closer look at LXQt.

Do you also try to avoid, or completely avoid, applications that use GTK ?

I'm a big fan of SDL as a graphical interface for applications, but that's rare to see apps that use that. A few examples are La Grange and lite-xl

https://gmi.skyjake.fi/lagrange/

https://codeberg.org/lite-xl-agg/lite-xl

#GTK #Qt #SDL

    AodeRelay boosted

    [?]Fell ยป 🌐
    @fell@ma.fellr.net

    RE: kind.social/@PurpleJillybeans/

    I too have a BGR monitor and would like to raise awareness that not all Linux apps properly support different subpixel arrangements yet!

    - Electron apps do it wrong.
    - JetBrains IDEs do it wrong.
    - GTK apps do it sometimes? It's weird.

    Firefox and Qt apps are perfect for me ๐Ÿ‘Œ๐Ÿป

      1 ★ 0 ↺

      [?]Marek S. ล. ยป 🌐
      @marek@m5l.eu

      Another day, another discovery of classic tool that does exactly what I want, this time it's git worktree for the rescue:

      I was working on updating a project to a newer version, but wanted to keep comparing to a tag from some time ago. The problem is that checking out a different commit changes all the files as far as is concerned, and everything builds from scratch. If only there was a way to have another copy of the same repo without cloning...

        0 ★ 0 ↺

        [?]Marek S. ล. ยป 🌐
        @marek@m5l.eu

        I'm learning to be IDE-independent and appreciate more. After a bunch of hunting for one failing file per each rebuild I came up with a magical solution. The incantation is:

        find . -name '*.qml' | xargs sed -i 's/\(import [A-Za-z0-9.]*\)[ ]*[0-9.]*/\1/g'

        Which translates to "please remove all versions from import statements in my QML files"