Questions tagged [kde-plasma]

KDE Plasma Desktop (sometimes known as KDE, the organization that publishes it) is a Linux-based desktop and application platform.

The current generation of the graphical workspaces environment created by KDE. Its default theme, known as "Breeze", has increased convergence across different devices.

https://kde.org/plasma-desktop

735 questions
6
votes
2 answers

embedding an application (in this case a terminal) within a QT application

I am writing a QT application and I need to embed a terminal (we say,xterm) within a QDialog, like some KDE application (see kdevelop/kate/...). I've been trying with: - QX11EmbedContainer placed into the QLayout of my QDialog - QProcess for the…
JuanDeLosMuertos
  • 4,532
  • 15
  • 55
  • 87
6
votes
3 answers

How to create KDE tray notification in a C++ program?

I have a C++ program (that uses Qt), and I want to create a tray notification with a progress bar. I think Qt can show text notifications, but not progress bar - that's KDE-specific. I can't find any example of managing KDE tray notifications in…
Violet Giraffe
  • 32,368
  • 48
  • 194
  • 335
6
votes
1 answer

How to use KDE's Smoke?

I can't get what the Smoke is. I've been expecting that smoke will generate C wrappers for C++ code and create header file with generated functions. But running smokegen on C++ headers gives me tiny header, which just exports pointer to some Smoke…
arrowd
  • 33,231
  • 8
  • 79
  • 110
6
votes
6 answers

Programatic desktop icon placement

I am looking for a way to programatically get/set the icon positions on the desktop. Clearly there is some "state" stored in a somewhere. Does anybody know here? I am trying to get a proof of concept going on ANY platform so if you know how to do it…
ivan
  • 328
  • 4
  • 7
5
votes
2 answers

Generate valid ical file on linux

Is there a simple way to create a valid icalendar file for a single appointment providing date, time, title and description on the linux commandline? Note that this data might have to be escaped properly. I looked at konsolecalendar (kde) but it…
highsciguy
  • 2,569
  • 3
  • 34
  • 59
5
votes
2 answers

Can I reach the shell, web or menu commands from the Kate editor's JavaScript?

You can extend the KDE Kate editor with JavaScript, and control e.g. the undo buffer. I would like to call e.g. HTML Tidy from inside such a script, but I cannot find any bindings from inside the JavaScript environment to access the shell, the web,…
jeorgen
  • 656
  • 5
  • 14
5
votes
6 answers

In KDE, how can I automatically tell which "Desktop" a Konsole terminal is in?

I have multiple "desktops" that I switch between for different tasks in my KDE Linux environment. How can I automagically determine which desktop my Konsole ( kde console) window is being displayed in? EDIT: I'm using KDE 3.4 in a corporate…
Ross Rogers
  • 23,523
  • 27
  • 108
  • 164
5
votes
0 answers

How to show/hide KDE plasmoid's tooltip programatically?

Is there a way to make a plasmoid tooltip to show/hide programatically? I tried by setting a ToolTipArea over the compact representation, and trying to trigger it with a Timer - it does not work (the regular tooltip keeps showing but only when…
acidrums4
  • 217
  • 3
  • 12
5
votes
1 answer

How can I determine if my KDE Desktop is in lock screen state from command line?

I have a program run on the background that simply take a screenshot every N seconds. eg: #!/bin/sh while true; do take-screenshot sleep 10 done What I want to achieve is only take screenshot if screen is not locking. eg: #!/bin/sh while…
Bi Ao
  • 704
  • 5
  • 11
5
votes
2 answers

Scatterplot with marginal KDE plots and multiple categories in Matplotlib

I'd like a function in Matplotlib similar to the Matlab 'scatterhist' function which takes continuous values for 'x' and 'y' axes, plus a categorical variable as input; and produces a scatter plot with marginal KDE plots and two or more categorical…
Dave
  • 515
  • 1
  • 8
  • 17
5
votes
3 answers

install EventFilter on QWidget (qt4.4.3/kde4)

I have a K* window, and within it, a widget which needs the events filtered. For example I do not want the possibility of clicking it... How can I do that? Have I to use eventfilters? In this case, what's the best way? but my problem is that I…
JuanDeLosMuertos
  • 4,532
  • 15
  • 55
  • 87
5
votes
1 answer

No "Open in new tab" option in Okular 0.22.0

Since the version 0.19, Okular has a tabbed interface. But in my version (0.22.0) I don't see the "Open in new tab" option in the settings (as explained in the Okular documentation). I precise that my installation is under a Gnome environment. What…
cde
  • 187
  • 1
  • 12
5
votes
2 answers

How can I build KDE Dolphin from its source code?

I'm using Ubuntu 15.04 x64. I cloned the Dolphin repository from git://anongit.kde.org/dolphin. I then proceeded to build the directory by: mkdir build cd build cmake .. But when I run the CMake command I get: -- The C compiler identification is…
shortstheory
  • 470
  • 5
  • 17
5
votes
1 answer

Installing MySQL 5.6 in Ubuntu 14.04 triggers removal of needed packages

So I was trying to make a fresh installation of MySQL 5.6 on Ubuntu 14.04.2 and for some reason it tried to remove needed packages, not without first complaining about some unmet dependencies. Here's what happened: pedro@hope:~$ sudo apt-get install…
Pedro Rodrigues
  • 424
  • 5
  • 16
5
votes
1 answer

Remote linux desktop notification using notify-send

I've made a client - server system in zmq which would help send mass notifications to people logged onto all the machines on the network. The client daemons are running under root on all of the different machines. However when a message is sent to…
user2252999
  • 183
  • 2
  • 10