Warning: session_start(): open(/tmp/sess_24c71d9053efdb8ccff8dfff3cdb5ebb, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
fadnix's comments openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login

-
- fadnix's profile .- Fan of (8) .- CV  .- Friends  .- Content  .- Latest Comments (13) . 
Re: Re: do_open_with & kwrite
Aug 20 2015  on content Root Actions Servicemenu

This is also for KF5, it used to work fine with KDE4.

I tested it and it works great. Thanks for your great work.

Note: can you add the version number as a comment at the top of the perl script? since there is no way to find if my script is up to date or not and what version it is.

.
do_open_with & kwrite
Aug 11 2015  on content Root Actions Servicemenu

kwrite doesn't support the --caption parameter which is being used in the function "do_open_with" and it was not functioning until i removed that part, I also couldn't get it to use the quotation correctly in the same exec line so I did it seperatly, escaping the single quote didn't work for some reason, so I had to change this:

Quote:
exec "$CPROGRAM --caption \"$APPNAME $ROOTREMINDER\" \'$TARGET\'" ;


to:

Quote:
$TARGET = "'" . $TARGET . "'";
exec "$CPROGRAM $TARGET";


so you might need to add an if statement to check which editor is being used.

.
Text editor detection KF5
Aug 11 2015  on content Root Actions Servicemenu

The line:
Quote:
xdg-mime query default text/plain | sed s/.desktop// | sed s/kde4-//


will return "org.kde.kwrite" and "which" will not recognize it as a command.
Quote:
which: no org.kde.kwrite in (....


Maybe change it to something like this:
Quote:
xdg-mime query default text/plain | sed s/.desktop// | sed s/org.kde.//

.
.
Re: Awesome work but...
Jun 20 2011  on content K4Guitune

Update: The K3Guitune I use is packaged for fedora and it includes the patch for fftw library and also some other sound server fixes by fedora people, so that could be the reason why it works with ALSA server, not sure if these are also there in the original 1.01 code since I did not compile the source.

.
.
Re: Re: download-link ?
Jun 20 2011  on content QOscC

Non of these download links work. I did a lot of searching but could not find any working link to download the code.

Any help?

.
Awesome work but...
Jun 20 2011  on content K4Guitune

Thanks for the port, I use K3guitune as an oscilloscope for analog data (not musical instruments) under Fedora14-KDE4 and it works an is able to autodetect my sound card (since i use ALSA+Pulseaudio, and don't have the /dev/dsp file).
However, your ports could not find the sound card so I used the PulseAudio OSS Wrapper "padsp" to emulate the /dev/dsp. like this "padsp k4guitune"
Now it opens, but no signals :(

I have used "padsp" with other applications and it works but not sure why this one does not. Could you please help...

.
Re: Re: Compiling under Fedora
May 9 2011  on content Kfilebox

I had the same issue once, but i think it was because the tar.gz file did not unpack correctly. So download the file again, unzip it, apply the fix to "kfilebox.pro" and it should work.

(To be specific, the file "mainwindow.h" was empty).

Now it compiled for me correctly.
F14-32bit
kfilebox 0.4.7

.
Re: Compiling under Fedora
Nov 29 2010  on content Kfilebox

just a small update since the project name is now changed to kfilebox. so the file that need changing is "kfilebox.pro.

So simply open that file and locate:
-----
LIBS += -lkdeui
-----

and replace it with:
-----
INCLUDEPATH += /usr/include/kde4
LIBS += -L/usr/lib/kde4/devel/ -lkdeui -lkdecore
-----

then compile:
-----
qmake-qt4
make
su -c 'make install'
-----

.
Re: Compiling under Fedora
Nov 29 2010  on content Kfilebox

Hi all,

To compile this under Fedora 14 you need to do a bit more changes to the "kdropbox.pro" and add:

------------
INCLUDEPATH += /usr/include/kde4
LIBS += -L/usr/lib/kde4/devel/ -lkdeui -lkdecore
------------

after that do the steps to compile and run.. (qmake-qt4, make, qmake-qt4, make install).

.
Compiling under Fedora
Sep 22 2010  on content Kfilebox

Hi all,

I think this will apply to Fedora users and maybe others too

I use Fedora 13 & currently KDE 4.4.5 and the program did not compile since it could not locate some libraries so to fix that just update the kdropbox.pro file and add these lines:

----------
INCLUDEPATH += /usr/include/kde4
LIBS += -lkdeui \
-lkdecore
----------

* NOTE: the file already has this line "LIBS += -lkdeui" so you will have to add the backslash at the end and include the other line underneath it.

after that do the steps to compile and run.. (qmake-qt4, make, qmake-qt4, make install).

.


Do you miss your friend here on the website?
Send an invitation email


Search people
Current visitors
New users
Birthdays
Most active users
Back



-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team