• 4 Posts
  • 27 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle
  • Thank you!

    This is what I came up with.

    • a script that does what you need, and reads a kinda ‘config file’ which Konsole instance/window/session to use
    • another script that saves the current session into that config file

    So you’d save the scripts somewhere you like, and run the useThisSession one in the session you’d like to be the target.

    Then, you can run / bind to a shortcut / … the runCommand script, and it will show, raise, set Session, and run the command on the target saved earlier.

    useThisSession.sh:

    #!/bin/bash
    # useThisSession
    
    echo MYCMD_SERVICE=$KONSOLE_DBUS_SERVICE > ~/.config/mycmdrc
    echo MYCMD_SESSION=${KONSOLE_DBUS_SESSION#/Sessions/} >> ~/.config/mycmdrc
    echo MYCMD_WINDOW=${KONSOLE_DBUS_WINDOW#/Windows/} >> ~/.config/mycmdrc
    

    runCommand.sh:

    #!/bin/bash
    # runCommand
    
    . ~/.config/mycmdrc
    
    qdbus $MYCMD_SERVICE /konsole/MainWindow_$MYCMD_WINDOW showNormal
    qdbus $MYCMD_SERVICE /konsole/MainWindow_$MYCMD_WINDOW raise
    qdbus $MYCMD_SERVICE /Windows/$MYCMD_WINDOW setCurrentSession $MYCMD_SESSION
    qdbus $KONSOLE_DBUS_SERVICE /Sessions/$MYCMD_SESSION runCommand "echo cmd"
    

    For testing purposes, I’m using "echo cmd" instead of '!!' (note the different type of quotes) to not cause any… unintended… executions.

    Running qdbus $MYCMD_SERVICE /konsole/MainWindow_$MYCMD_WINDOW will show you all methods available on the Window, eg, so you can pick&choose from those if you want different behaviour from show (& un-minimize) and raise.

    EDIT: syntax adjusted to work in ‘regular’ bash







  • As for the first points, yes, that may happen, but is it a problem for users who already are part of a ‘better’ experience here than on the for-profit platforms?

    I, for one, find much better discourse here than anywhere on reddit, let alone Meta or Twitter.

    Also exemplified by me engaging much more here than ever on the others. I do prefer quality over quantity - everyone is invited to join the table, but I don’t see much benefit in luring people there who would ultimately only dilute or be disruptive - ie, not really into the thing that’s happening here.

    For the last point, well, legislators can certainly try. While telling people it’s all for their benefit and upholding freedom and democracy and equal opportunity and whatnot. And even keep a straight face.





  • (Disclaimer: I haven’t read into that referenced article by ninja at all, maybe it already says something related)

    For one, it may be possible to filter accounts that were created but actually never used to log on, within a week or two of creation - those could go without much harm done IMO.

    And/or, you could message such accounts and ask them for email verification, which would need to be completed before they can interact in any way (posting, commenting, voting). That latter one is quite probably currently not directly supported by the Lemmy software, but could be patched in when the need arises.





  • I “tried” to use XMPP/Jabber in its heyday, but in my experience (& memory) it never got to the point to have a “critical mass” of community (I felt to be part of / want to be part of).

    Fediverse/Lemmy has this critical mass at least since some weeks now - unless too many of those users decide to leave for another place, I’m happy here no matter what other things get hyped in a given week.

    Back in Jabber’s day, I would have liked to see it develop some communities as they did - and still do! - exist on IRC, but that simply never happened (with one I would both be interested in and could find).



  • “Should ‘we’ do?”

    Nothing. If people and/or communities coming in through Threads are engaging in good faith, cool, more nice folks to have a community with. People/communities engaging in bad faith get blocked/defederated as is already common practice (and seems to be working outstandingly already, looking at average quality of posts and discourse “here” as compared to the “big platforms”).

    When Meta/Threads is hosting communities I like to see/be a part of, I’ll figure out how to subscribe/integrate those. Besides that, they’re free and welcome to run echo chambers in their own instances and communities, I don’t see how any of that would ever show up on my feed.


  • I guess this will already have been said, but nonetheless:

    I like the feeling of community as it is right now in the Fediverse very much.

    Most of me hopes that it will not successfully federate with Meta, ever; or if it “must”, in a way that will be mostly irrelevant to me (communities I wouldn’t subscribe to in the first place, anyway).

    I don’t see how that, in turn, would give Meta any control over the parts of the Fediverse that I care about. If they want to join and contribute in good faith, fine. If not, also fine. Why should it change anything for Fediverse “centered” communities?

    I never cared about size or majority, but about quality of content and discourse. And I find that in those points, the current Fediverse much outshines anything else I’ve seen (Facebook, Twitter, Reddit, …) in the last decade or so.


  • count0@lemmy.dbzer0.comtoLinux@lemmy.mlIs Systemd that bad afterall?
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    1 year ago

    For someone coming from NeXTStep (BSD based), having worked with SCO, various BSD and mostly Linux for the last 20 years, the worst thing about systemd is documentation that’s easily accessible/readable for people used to a traditional init system.

    “How do I get it to do special use case X” was a basically unanswerable question when it got dragged into the mainstream (for reasons I can very well understand - the reasons for the dragging, that is, the bad docs, not so much).

    Maybe that’s improved in the mean time - I wouldn’t know, I had to figure it out back then and now I know its lingo when searching and such.