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.
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
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:
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.
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.