


Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
When you encounter an error like this, just google the name of the missing file (in this case Qt5QuickConfig.cmake) + ubuntu, usually the result from packages.ubuntu.com tells you the name of the package you need - Mar 30 2017

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
You have to install it manually. (ie download the source, extract, go in the directory, mkdir build, cd build, cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DLIB_INSTALL_DIR=lib -DKDE_INSTALL_USE_QT_SYS_PATHS=ON, then make and make install) - Apr 16 2016

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
I should really update this... - Dec 28 2015

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
> Do you plan to add possibility to choose between opening Gmail or Inbox By Gmail after clicking on unread mail?
I'm sorry but I don't understand what you mean. Can you elaborate? - May 28 2015

Plasma 5 Applets by anthon38 106 comments
The error message contains a space that shouldn't be there in "org.kde.plasma.private .gmailfeed " (the one in the middle), can you make sure the space isn't here in /usr/share/plasma/plasmoids/org.kde.plasma.gmailfeed/contents/ui/main.qml?
Can you post the output of "ls /usr/lib/qt/qml/org/kde/plasma/private/"?
- May 17 2015

Plasma 5 Applets by anthon38 106 comments
Can you post the output of:
cat ~/.config/plasma-org.kde.plasma.desktop-appletsrc | grep accountId - Apr 29 2015

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
source=('git://github.com/anthon38/gmailfeed.git')
with
source=('git://github.com/anthon38/gmailfeed.git#branch=kaccounts') - Apr 29 2015

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments
Multi-accounts might come at some point. - Apr 29 2015

Plasma 5 Applets by anthon38 106 comments
I don't know how to build a deb. I'd suggest you ask on a debian/ubuntu forum.
However, here is how to install it manually:
You'll need the following packages:
build-essential
cmake
extra-cmake-modules
qtbase5-dev
qtdeclarative5-dev
plasma-framework-dev
libkf5notifications-dev
Then in the source directory, do:
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DLIB_INSTALL_DIR=lib -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
make
sudo make install - Apr 28 2015

Plasma 5 Applets by anthon38 106 comments

Plasma 5 Applets by anthon38 106 comments

Network by anthon38 90 comments
Also please be sure that wicd-deamon is running before adding the applet to the panel. - Mar 18 2012

Network by anthon38 90 comments
yes there is a problem with the build on KDE 4.5. This will be fixed in the next version, the fix is available here:
http://commits.kde.org/wicd-kde/1dfd9999b0974337eb7625a0f93bdd2b2c76a0a0 - Mar 07 2012

Network by anthon38 90 comments
Thank you for your plasmoid, it's very useful. I have some comments about it though, I hope you don't mind ;)
-I think you included the wrong main.py in the package, as it doesn't contains the import locale fix.
-You should put your plasmoid in the category "plasmoid script" instead of "plasmoid binary", so that it can be downloaded directly with KGHNS, instead of having to be installed manually.
-To fix the visual glitch mentioned in the comments, you can use setFlag(QGraphicsItem.ItemClipsChildrenToShape) on the scrollwidget.
-Instead of shipping your own icons with the plasmoid, you can use those shipped with KDE, since the plasmoid requires Plasma to run anyway, right? ;)
So instead of this:
icon23 = QIcon()
icon23.addPixmap(QPixmap(self.applet.package().filePath("ui","add.png")), QIcon.Normal, QIcon.Off)
self.addButton.setIcon(icon23)
You can do this:
self.addButton.setIcon(KIcon("list-add"))
-Using the "list-remove" icon would be more consistent than the "edit-delete" icon.
-Same goes for "view-refresh" instead of "edit-redo".
I think that's all, thanks again! - Oct 05 2011

Network by anthon38 90 comments
It seems to work fine here. Could you provide a screenshot? - Sep 05 2011

Network by anthon38 90 comments
this is actually the intended behaviour. These icons do not describe status, but actions. So if the network is connected, the action the button triggers is "disconnect", thus the disconnect icon.
The status of the connection is displayed in the statusbar at the bottom. - Aug 09 2011

Network by anthon38 90 comments
The really weird part is that you don't see that happening with wicd-gtk, because wicd-kde is just listening to the wicd daemon, just like the gtk client. Would you mind trying again the gtk client alongside wicd-kde, just to be sure?
Also you can check if the signals emitted by the daemon match what you see in the client by using
dbus-monitor --system | grep ScanSignal
This should tell you when the Start and End signals are send through dbus. - Apr 23 2011

Network by anthon38 90 comments
>wicd-kde enters in a loop refreshing automatically wireless networks every few seconds
Could you be more specific? Does that mean that it triggers a full scan? Does it seem to wait for the previous scan to be completed? Does it happens even if the window is closed? The more info, the better.
Thanks - Apr 14 2011

Network by anthon38 90 comments
this is interesting, but I don't think adding distro-specific tweaks to the source is the proper way to do it. - Apr 14 2011

Plasma 4 Extensions by patkoscsaba 35 comments
But here's a(n obvious) patch that works for me (tm)
def _updatelabel(self):
- sensor=commands.getoutput("nvidia-settings -q [thermalsensor:0]/ThermalSensorReading | grep thermalsensor");
- sensor=sensor[sensor.find("):")+2:sensor.find(".")+1];
+ sensor=commands.getoutput("nvidia-settings -q [gpu:0]/GPUCoreTemp | grep gpu:0");
+ sensor=sensor[sensor.find("):")+2:sensor.find(".")];
sensor=sensor.replace(".",unichr(176).encode("latin-1"));
sensor+="C"; - Dec 30 2010

Network by anthon38 90 comments
|It did not show any of my network interface (eth0 and wlan0) it just showed an empty box when I refresh nothing happens.
Can you tell me what distro and which version of KDE you are using so I can try to reproduce?
|Is this application just a frondend client for the wicd daemon?
Exactly, this is just a front-end, you will need the wicd daemon from your distribution.
|I would appreciate some clarification in the installation procedure
There is an INSTALL file in the tarball which contains the instructions to compile. I can't add things such as "which packages does it depend on", because it's really distro specific.
Which leads me to:
|My biggest issues concerning the wicd daemon is that installing it also pulls in the gtk client for wicd. I really don't know how the two can be reconciled.
On all the distributions I've tried, I have been able to install the deamon alone. Which one are you using? - Oct 20 2010

Network by anthon38 90 comments

Network by anthon38 90 comments
http://community.kde.org/KAuth_Troubleshooting
If not, please paste here the output of the "make install" command. Just the end, so that I can see what is installed and where. - Sep 16 2010

Network by anthon38 90 comments
You probably have the digital-clock plasmoid somewhere on your desktop. (If not, run "plasmoidviewer digital-clock")
- Right click > Adjust Date and Time
- Change something so that you can click the Apply button
- Click the button
Does it ask you for the password?
- Sep 16 2010

Network by anthon38 90 comments
does it work with the gtk client? - Sep 15 2010

Network by anthon38 90 comments
error 4 is AuthorizationDenied. Does the error appears before or after KAuth prompts you for the root password?
Also, have you uninstalled everything before reinstalling? - Sep 15 2010

Network by anthon38 90 comments
1- Probably my fault since the changelog seems misleading, but if you talk about not remembering the size when you quit the application, this is normal. Please see my answer to Musikolo at the bottom of page 2.
2- Hmm what I got from the doc is: "An error from D-Bus occurred." I'm not sure of where this might come from. Could you please try to recompile using
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
instead of cmake ../ ? (don't forget to reinstall after that)
3- That's because the notifications are not implemented yet. - Sep 14 2010

Network by anthon38 90 comments
1- Isn't the "Name" field supposed to be for the app name? I mean like KMix or Konqueror? And then the "GenericName" would be more descriptive, like "Wicd client for KDE". I know I translated the "Name" string in the desktop file, but maybe there was no point of doing it...
2 and 5- Thanks!
3- Ok they are two things here:
The first is the bug you pointed out in your first comment, I didn't expected the window not to remember its size when you close it. Not quit, just close. This is now fixed.
The second thing is what you are pointing out now, that is the window does not remember its size between "sessions". This is on the TODO list, but I haven't really looked into that yet.
4- That's true. Will do ;) - Sep 14 2010

Network by anthon38 90 comments

Network by anthon38 90 comments
thanks but I decided to go with another solution (see above).
There is no clean way to change the icons at the moment, because the app uses the system icons. So technically you can change them, but this will have effects on all your system, so I do not recommend it.
Note that this might change in the near future, so stay tuned. - Sep 12 2010

Network by anthon38 90 comments
2- I agree with you, we need something more visual. I'm not very skilled at drawing icons, so at first I might just take the ones from the NetworkManager applet (they look quite similar to the current ones, with a blue gauge on the right hand side).
3- ;)
4- The problem with removing the connect/disconnect buttons in the list is that they are the only way to toggle a connection with only one clic (note that you can also toggle a connection by double-clicking in the list). I don't want to loose that. So considering this, I don't think making the "Disconnect (all)" button "smarter" is necessary. To be honest, I don't use this button myself, but I decided to put it there because it was present in the gtk client, so I thought some people might want it.
Thank you for taking the time to explain your thoughts! - Sep 12 2010

Network by anthon38 90 comments
1- Well "Wicd Client KDE" is just the name of the application (I admit I was short on ideas :p), does it sound that bad? If it's just for the window title, "Wicd Client for KDE" seems a little bit too verbose to me, maybe just "Wicd client"?
2- hmm I'm not sure i understand... The tray icon is actually changing with the signal strength, but maybe it is hard to see. Or maybe you want to display "xx%" over the icon?
3- Thanks for pointing that out.
4- Again, maybe I misunderstand, but what you describe is how the behaviour is supposed to be and how it behaves for me. But maybe it's a bug... could you please eleborate or provide screenshots? - Sep 10 2010

Network by anthon38 90 comments
ps: thanks for the gentoo ebuild ;) - Sep 10 2010