32
submitted 2 weeks ago* (last edited 2 weeks ago) by meekah@lemmy.world to c/linux@lemmy.world

I use KDE on arch and would like to achieve the following behavior:

Whatever way I launch Konsole, I want it to check whether there already is a Konsole instance. If one exists, it should be brought into focus, and if no instance exists, one should be launched.

I am unable to find such an option in the Konsole settings, even though I found a roughly 1 year old forum entry mentioning such a setting. Was it removed or am I just blind? Or do I need some optional dependency?

Alternatively, it would be fine if this could simply kick in when I use my Super+K shortcut, which I've set up. Maybe there's a way to call Konsole from the terminal like that? I tried using konsole --force-reuse but it didn't seem to do the trick, and konsole --new-tab does not bring Konsole into the foreground.

Edit: Here's a script that does this, by @Audalin@lemmy.world

#!/bin/bash
WIN="$(kdotool search --class org.kde.konsole | head -1)"
if [[ "$WIN" != "" ]]; then 
    kdotool windowactivate "$WIN"
else 
    konsole
fi

kdotool is available in AUR as kdotool-git

all 14 comments
sorted by: hot top controversial new old
[-] Audalin@lemmy.world 5 points 2 weeks ago

If you don't find such a setting, you can try writing a script that checks if it's running already (e.g. with pgrep), activates the window if found (no idea how to do that in Wayland properly) and launches a new instance otherwise. Then use a custom .desktop launcher for Konsole.

[-] meekah@lemmy.world 4 points 2 weeks ago

Thanks for your reply :) I might look into it if I don't find anything easier

[-] Audalin@lemmy.world 8 points 2 weeks ago* (last edited 2 weeks ago)

Here's a KDE-specific script with kdotool (Wayland always needs custom solutions for simple things):

#!/bin/bash
WIN="$(kdotool search --class org.kde.konsole | head -1)"
if [[ "$WIN" != "" ]]; then 
    kdotool windowactivate "$WIN"
else 
    konsole
fi
[-] meekah@lemmy.world 2 points 2 weeks ago

sweet! thank you so much!

[-] johsny@lemmy.world 4 points 2 weeks ago

I would like to know too. Subscribed.

[-] meekah@lemmy.world 2 points 2 weeks ago

in case you weren't notified despite subscribing to the post, there is a solution now :)

[-] johsny@lemmy.world 1 points 2 weeks ago

Thank you!!

[-] meekah@lemmy.world 3 points 2 weeks ago

@mods: If I should cool it on the questions today, let me know.

[-] catloaf@lemm.ee 2 points 2 weeks ago

I'm not a mod here, but two should be fine. Just don't keep asking simple questions day after day or week after week. That's when it gets annoying.

[-] meekah@lemmy.world 2 points 2 weeks ago

Is this a simple question? It's hard to tell from my inexperienced position. I have a few friends who are more experienced with linux than I am, and they help me out from time to time. But when they are not available and I am unable to find something on google after 15-30 minutes, I tend to start posting to forums haha

[-] johsny@lemmy.world 2 points 2 weeks ago

Google search is so useless these days too!

this post was submitted on 29 Apr 2024
32 points (100.0% liked)

Linux

6719 readers
122 users here now

Welcome to c/linux!

Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!

Rules:

  1. Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.

  2. Be respectful: Treat fellow community members with respect and courtesy.

  3. Quality over quantity: Share informative and thought-provoking content.

  4. No spam or self-promotion: Avoid excessive self-promotion or spamming.

  5. No NSFW adult content

  6. Follow general lemmy guidelines.

founded 11 months ago
MODERATORS