
Various Plasma 5 Improvements by gmolina 27 comments
Here's why:
the post you linked redirect to the Firefox-KDE-Wallet plugin I made (http://www.andreascarpino.it/posts/firefox-kde-wallet-for-kf5.html). As I wrote, my plugin is a fork of Guillermo's plugin to support KDE Frameworks 5. I browsed Guillermo's repository and found out it accepted my changes in his new repository http://svn.guillermomolina.com.ar/firefox-kde5-wallet/ . So, there's only one Firefox KWallet 5 plugin :-) - Oct 12 2015

Plasma 4 Extensions by ilpianista 44 comments
I implemented #1 and #2, but I don't get the issue you have with BorderlessMaximizedWindows, could you attach a screenshot?
Also note that Tasks Plasma engine flags as maximized the windows that are maximized only vertically/horizontally. - Feb 15 2014

Plasma 4 Extensions by ilpianista 44 comments
no, there's already the "Current Application Control" plasmoid for that.
I use this with the menubar plasmoid. I also disabled the titlebars in KWin so this is useful to me. - Oct 16 2013

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 44 comments
I guess I can't reproduce your issue on KDE 4.9.2. http://wstaw.org/m/2012/10/03/applicationname-plasmoid.png
Thanks for the suggestions! - Oct 03 2012

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 44 comments
I chosen the elide option ;) - Sep 30 2012

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 44 comments
open main.qml,
at line 89, replace "Sunken" by "Plain".
Then, add 'font { bold: true }' line after "text:visibleText" (line 97)
Maybe I'll add the common font customization in the Settings dialog. - Sep 30 2012

Plasma 4 Extensions by ilpianista 44 comments
About the GTK apps, you need libdbusmenu-gtk{2,3} and you have to patch both gtk2 and gtk3 (if you use gtk3 app) with the ubuntu patches. A lot of work imho :)
I _think_ this work ouf-of-the-box only in Kubuntu then. - Sep 30 2012

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 44 comments
Try disabling the KDE version check in the CMakeLists.txt and see if it works. Let me know, so I downgrade the KDE version in the cmakelists ;) - Sep 30 2012

Plasma 4 Extensions by ilpianista 44 comments
I added an option in the plasmoid settings to show the window title. Try it! - Sep 30 2012

Plasma 4 Extensions by ilpianista 44 comments
I didn't know XBar, but from what I understand it's part of Bespin, I'm right? - Sep 29 2012

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 44 comments

Plasma 4 Extensions by ilpianista 7 comments

Plasma 4 Extensions by ilpianista 7 comments
Thanks for the feedback, do you mean a README with the installation steps? - Feb 18 2012

Various KDE 1.-4. Improvements by gmolina 153 comments

Amarok 1.x Scripts by KNCH 2 comments
...but why you didn't submit your patches to the original sleepy? - Jun 21 2011

Plasma 4 Extensions by panzi 842 comments
https://bitbucket.org/jimi312/smooth-tasks-kde-sc-4.6 - Jan 22 2011

Aurorae Themes by Scnd101 3 comments
Using a CMakeLists.txt you can choice which files you want to install, where and with the rights permissions.
Your files have execute permissions and this is bad, and they are text files thus they don't need it.
I run `cmake . -DCMAKE_INSTALL_PREFIX=/usr/local && make install` and produkt is installed on my system in the right path and with the right permissions. Obviously this is up to you :) - Jan 05 2011
http://paste.kde.org/1828/
To make this working I had to fix symlinks too in this way:
$ cd produkt
$ cd dialogs
$ ln -sf ../widgets/background.svgz .
$ ln -sf ../widgets/background.svgz krunner.svgz
$ cd ../translucent/dialogs
$ ln -sf ../../widgets/translucentbackground.svgz background.svgz
$ ln -sf ../../widgets/translucentbackground.svgz krunner.svgz
$ cd ../widgets
$ ln -sf ../../widgets/translucentbackground.svgz background.svgz
$ ln -sf ../../widgets/tooltip.svgz .
nice! thanks for your work - Jan 05 2011
lrwxrwxrwx krunner.svgz -> /home/islington/Downloads/produkt/widgets/background.svgz
$ ln -sf ../widgets/background.svgz krunner.svgz
$ ln -sf ../widgets/background.svgz .
fixed it. - Jan 05 2011

System Runners by tog000 11 comments

QtCurve by CraigD 2890 comments

QtCurve by CraigD 2890 comments
Also, someone else reported this issue:
https://bbs.archlinux.org/viewtopic.php?id=108496
The program 'amule' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
(Details: serial 2825 error_code 8 request_code 2 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.) - Nov 16 2010

Graphic Apps by kleag 35 comments

Graphic Apps by kleag 35 comments

Graphic Apps by kleag 35 comments

Utilities by gcala 9 comments
Arch Linux pkgbuild here:
http://aur.archlinux.org/packages.php?ID=35360 - Mar 11 2010

Wallpapers Arch by ilpianista 2 comments

Full Icon Themes by Scnd101 9 comments
* blogilo
* choqok
* eclipse
* qstardict
btw, awesome icons!!! and thank you! - Mar 07 2010

Amarok 2.x Scripts by tmske 17 comments

Amarok 2.x Scripts by tmske 17 comments
--- sleepy/action.js~ 2009-10-18 14:09:24.000000000 +0200
+++ sleepy/action.js 2009-10-21 02:21:18.214389001 +0200
@@ -58,6 +58,7 @@
this.suspend = suspend;
this.hibernate = hibernate;
this.shutdown = shutdown;
+ this.stop = stop;
this.execute = execute;
}
@@ -76,6 +77,11 @@
this.execute(shutdown);
}
+function stop(p) {
+ var stop = "Amarok.Engine.Stop(true)";
+ this.execute(stop);
+}
+
function execute(p) {
//print("execute:::");
//print(p);
--- sleepy/gui.js~ 2009-10-18 14:06:54.000000000 +0200
+++ sleepy/gui.js 2009-10-21 02:23:58.954369985 +0200
@@ -80,7 +80,11 @@
if (this.dialog.actionBox.action.currentIndex == 1) {
a = function() {x.action.hibernate();};
} else {
- a = function() {x.action.shutdown();};
+ if (this.dialog.actionBox.action.currentIndex == 2) {
+ a = function() {x.action.shutdown();};
+ } else {
+ a = function() {x.action.stop();};
+ }
}
}
this.track.setAction(a);
--- sleepy/gui.ui~ 2009-10-18 14:06:12.000000000 +0200
+++ sleepy/gui.ui 2009-10-21 02:16:29.954417689 +0200
@@ -215,6 +215,11 @@
<string>Shutdown</string>
</property>
</item>
+ <item>
+ <property name="text">
+ <string>Amarok Stop</string>
+ </property>
+ </item>
</widget>
</widget>
<widget class="QLabel" name="infoDisabled"> - Oct 20 2009

Amarok 2.x Scripts by tmske 17 comments
thanks - Oct 20 2009
+++ plasmoid-countdown-0.2.2/CMakeLists.txt 2009-09-09 22:58:37.412060368 +0200
@@ -4,7 +4,6 @@
# Find the required Libaries
find_package( KDE4 REQUIRED )
include( KDE4Defaults )
-find_package( Plasma REQUIRED )
add_definitions ( ${QT_DEFINITIONS} ${KDE4_DEFINITIONS} )
include_directories(
--- plasmoid-countdown-0.2.2/src/CMakeLists.txt~ 2009-09-09 22:59:17.530134595 +0200
+++ plasmoid-countdown-0.2.2/src/CMakeLists.txt 2009-09-09 22:59:04.410671153 +0200
@@ -5,7 +5,7 @@
# Now make sure all files get to the right place
kde4_add_plugin(plasma_applet_countdown ${countdown_SRCS})
target_link_libraries(plasma_applet_countdown
- ${PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
+ ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
install(TARGETS plasma_applet_countdown
DESTINATION ${PLUGIN_INSTALL_DIR}) - Sep 09 2009

Plasma 4 Extensions by biophysics 204 comments
thanks!! - May 04 2009
--- gtk-kde4/CMakeLists.txt~ 2009-04-25 22:23:12.000000000 +0200
+++ gtk-kde4/CMakeLists.txt 2009-04-25 22:23:30.000000000 +0200
@@ -23,5 +23,5 @@
ADD_SUBDIRECTORY(daemon)
-INSTALL(FILES daemon/gtk-kde4 DESTINATION ${KDE4_BIN_INSTALL_DIR} PERMISSIONS WORLD_EXECUTE)
+INSTALL(PROGRAMS daemon/gtk-kde4 DESTINATION ${KDE4_BIN_INSTALL_DIR})
INSTALL(FILES daemon/gtk-kde4.desktop DESTINATION ${AUTOSTART_INSTALL_DIR}) - Apr 25 2009

Wallpapers Arch by ilpianista 3 comments
I had seen the other girls' wallpapers. - Feb 16 2008