Default Terminal installed in the panel, but it gives only context menu (right click) choose second click

I prefer for fast access a deskto file :

[Desktop Entry]
Categories=Game;LogicGame;
Comment[de_DE]=Konsole
Comment=Konsole
Exec=konsole
GenericName[de_DE]=Konsole
GenericName=Konsole
Icon=application-x-executable-script
MimeType=
Name[de_DE]=Konsole
Name=Konsole
Path=
StartupNotify=false
Terminal=false
TerminalOptions=
Type=Application
Version=1.0
X-KDE-SubstituteUID=false
X-KDE-Username=

Please do not care what is not necessary in the desktop file.

But now I can via single klick open a terminal, a terminal is open, via single click the next

terminal will be opened… .

But with the default installation, I have to use the context menu (It is a minor issue).

Not sure I understand the question, but you can always make a konsole desktop application which starts this or that when clicked and offers several in the rightclick context menu.

I prefer for fast access a deskto file :

[Desktop Entry]
Categories=Game;LogicGame;
Comment[de_DE]=Konsole
Comment=Konsole
Exec=konsole
GenericName[de_DE]=Konsole
GenericName=Konsole
Icon=application-x-executable-script
MimeType=
Name[de_DE]=Konsole
Name=Konsole
Path=
StartupNotify=false
Terminal=false
TerminalOptions=
Type=Application
Version=1.0
X-KDE-SubstituteUID=false
X-KDE-Username=

Please do not care what is not necessary in the desktop file.

But now I can via single klick open a terminal, a terminal is open, via single click the next

terminal will be opened… .

But with the default installation, I have to use the context menu (It is a minor issue).

I prefer all ways a single click.# if the script was not launched from a terminal, restart it from a terminal
if [ ! -t 0 ] && [ -x /usr/bin/konsole ]; then
/usr/bin/konsole -e “bash -c \”$0 $*; read -s -p ‘Press enter to continue…’\“”
exit
fi

#1.0 to 1.8 for 720p video and 1.0 to 4.0 for 1080p
#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 18 -preset slow -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -c:v mjpeg -c:a copy “$(basename “$f” .ts).mov”;done
#brokenwood 18, 1.4
#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 17 -preset slow -vf nlmeans=“1.4:7:5:3:3” -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -vf scale=“1280:720,setsar=1”,nlmeans=“1.6:7:5:3:3” -vcodec libx265 -preset slow -crf 18 -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -vf yadif,nlmeans=“1.6:7:5:3:3” -vcodec libx265 -preset slow -crf 20 -c:a copy “$(basename “$f” .ts).mkv”;done

#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 18 -preset slow -vf yadif=0,nlmeans=“1.4:7:5:3:3” -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 22 -preset slow -vf yadif=0,nlmeans=“3.5:7:5:3:3” -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 18 -preset slow -vf yadif=0,nlmeans=“1.6:7:5:3:3”,unsharp=“3:3:1.0” -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -vcodec libx265 -crf 20 -preset slow -vf nlmeans=“3.5:7:5:3:3”,unsharp=“3:3:1.0” -c:a copy “$(basename “$f” .ts).mkv”;done
#for f in *.ts; do ffmpeg -y -i “$f” -map 0:v -map 0:a -vcodec libx265 -crf 22 -preset slow -c:a copy “$(basename “$f” .ts).mkv”;done
#edgar wallace, b/w 17, 1.4
#for f in *.ts; do ffmpeg -y -i “$f” -map 0:v -map 0:a -vcodec libx265 -crf 14 -preset slow -c:a copy “$(basename “$f” .ts).mkv”;done

I prefer a single click, only possible from my side of view via a desktop-file.

Looks like, instead of opening krunner and executing a script (which can call up konsole and do the job…) needs a Windows style icon in the taskbar they can single click to open the terminal and execute commands.

Kinda weird extra effort…

Personally I have a base command to call up Konsole for running anything I need to see or interact with (updates, checking/setting rtcwake/suspend times etc) - set an executable in a /bin folder:

hi-there

#!/bin/bash
commands() {
  echo "What's up!"
  sleep 1
  echo "2"
  sleep 1
  echo "1"
  sleep 1
  echo "0"
  echo "That's all folks!!"
  sleep 3
}

export -f commands
konsole -e "bash -c 'commands'"

Can also bind to keyboard shortcuts…

Nothing I need, it is only a comparison of an default installation, to open a terminal it leads to a context menu, and a desktop file installation, a single click.

I’m sorry - you completely lost me.

Konsole shortcut in panel, click to open konsole - middle click to open a new window.

Did you actually look in the settings of your task manager?

It’s what I was trying to say. Make some app that, when clicked, does what he wants ( konsole -e) and add some rightclick actions ( if needed) to it. Of course, I could completely miss what is wanted here.

1 Like

Just change the exec. Good advice though, give the app a different name than konsole.

For example:

Another approach could be to create an app using konsole’s tabs from file exec.