How to enable kde 4 theme into libreoffice-fresh ?

Some time ago I installed libreoffice-fresh and the file dialogs and icons are "libreoffice-style" rather than "kde-style", i have installed "kdelibs" for KDE desktop integration .. but no result.
Any ideas?, any advice ?
Regards.

It was an error in PKGBUILD, sorry. Now it's improve. Try now, or....:
PKGBUILD:
# Maintainer: Piotr Gorski <[email protected]>
pkgname=kgtk
pkgver=0.11.0
pkgrel=3.1
pkgdesc="LD_PRELOAD hack with helper scripts to make gtk and qt-only programs use KDE file dialogs."
arch=('i686' 'x86_64')
url="http://www.kde-apps.org/content/show.php?content=36077"
license=('GPL')
depends=('kdelibs')
makedepends=('pkgconfig' 'automoc4' 'cmake' 'gettext' 'gtk2>=2.6' 'gtk3>=3.0')
install=kgtk.install
source=(http://kde-apps.org/CONTENT/content-files/36077-KGtk-${pkgver}.tar.bz2)
md5sums=('e5abf37b9f15b301d213ffb881144ddb')
build() {
cd "${srcdir}/KGtk-${pkgver}"
mkdir -p "${srcdir}/build"
cd "${srcdir}/build"
cmake "../KGtk-${pkgver}" -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4
package() {
cd "${srcdir}/build"
make || return 1
make DESTDIR=$pkgdir install || return 1
and kgtk.install:
post_install() {
echo ""
echo "This converts GTK Filedialogs to KDE4 dialogs."
echo ""
echo "You can run GTK applications in 2 ways:"
echo " A. Call /usr/bin/kgtk-wrapper gimp"
echo " B. Create a symbolic link from the wrapper script to"
echo " your application, e.g."
echo ""
echo " ln -s /usr/bin/kgtk-wrapper /usr/local/bin/gimp"
echo ""
echo " and make sure you run /usr/local/bin/gimp instead of"
echo " /usr/bin/gimp in the future"
echo ""
/bin/true
pre_remove() {
echo ""
echo "If you linked some GTK applications to the wrapper"
echo "script provided by this package, make sure to"
echo "remove those links."
echo ""
/bin/true
Now it builds pkg.tar.xz file:
tar -tvf kgtk-0.11.0-3.1-x86_64.pkg.tar.xz
-rw-r--r-- root/root 714 2014-12-30 22:48 .PKGINFO
-rw-r--r-- root/root 747 2014-12-30 22:48 .INSTALL
-rw-r--r-- root/root 1465 2014-12-30 22:48 .MTREE
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/bin/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/lib/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/pt_BR/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/fr/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/en_GB/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/zh_CN/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/de/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/cs/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/es/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/it/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/ru/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/ru/LC_MESSAGES/
-rw-r--r-- root/root 1470 2014-12-30 22:48 usr/share/locale/ru/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/it/LC_MESSAGES/
-rw-r--r-- root/root 1106 2014-12-30 22:48 usr/share/locale/it/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/es/LC_MESSAGES/
-rw-r--r-- root/root 1112 2014-12-30 22:48 usr/share/locale/es/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/cs/LC_MESSAGES/
-rw-r--r-- root/root 1149 2014-12-30 22:48 usr/share/locale/cs/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/de/LC_MESSAGES/
-rw-r--r-- root/root 1190 2014-12-30 22:48 usr/share/locale/de/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/zh_CN/LC_MESSAGES/
-rw-r--r-- root/root 1191 2014-12-30 22:48 usr/share/locale/zh_CN/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/en_GB/LC_MESSAGES/
-rw-r--r-- root/root 1199 2014-12-30 22:48 usr/share/locale/en_GB/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/fr/LC_MESSAGES/
-rw-r--r-- root/root 1305 2014-12-30 22:48 usr/share/locale/fr/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/share/locale/pt_BR/LC_MESSAGES/
-rw-r--r-- root/root 1128 2014-12-30 22:48 usr/share/locale/pt_BR/LC_MESSAGES/kdialogd4.mo
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/lib/kgtk/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/lib/kde4/
drwxr-xr-x root/root 0 2014-12-30 22:48 usr/lib/kde4/libexec/
-rwxr-xr-x root/root 81944 2014-12-30 22:48 usr/lib/kde4/libexec/kdialogd4
-rwxr-xr-x root/root 48376 2014-12-30 22:48 usr/lib/kgtk/libkgtk2.so
-rwxr-xr-x root/root 48384 2014-12-30 22:48 usr/lib/kgtk/libkgtk3.so
-rwxr-xr-x root/root 2009 2014-12-30 22:39 usr/bin/kgtk-wrapper
Last edited by pb (2014-12-30 21:53:41)

Similar Messages

  • I am trying to download songs i recently purchased onto my ipod, they are not in my library but a seperate folder ( dont know what happened there ) there is no cloud next to the new songs ! how on earth do syn them into my ipod. Please help :)

    I am trying to download songs i recently purchased onto my ipod, they are not in my library but a seperate folder  on i tunes ( dont know what happened there ) there is no cloud next to the new songs ! how on earth do sync them into my ipod. Please help

    Hey liverpoolellie!
    Here is an article that should be able to address this issue for you:
    Syncing music to iPod shuffle
    http://support.apple.com/kb/ht1719
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • HT201301 ok so my comics are in itunes (bought comic viewer).  How the **** do I get them into my iPad?

    ok so my comics are in itunes (bought comic viewer).  How the **** do I get them into my iPad?  The info in About File Sharing only covers getting them into iTunes.  How does the app import them ot iTunes sync them?  Getting tired of going in circles.
    Thanks to anyone who can help here
    wkou

    Try contacting the developer > http://www.denvog.com/contact.html
    http://gizmodo.com/5555651/comic-viewer-for-ipad-lets-you-surf-for-comics-in+app
    iTunes Store: About In-App Purchases 
    iTunes Store: Purchasing and managing auto-renewing subscriptions

  • How to get old iDVD themes into IDVD 5?

    There are two themes in an older version of iDVD that are not available in iDvd 5 which I want to use. These are a revolving globe and a blue sky with white clouds. How can I import these into my computer?

    I like that Global theme too.
    I had to delete everything iDVD and re-install, starting with version 3, then 4, then 5. Should then have:
    http://www.kentidwell.com/idvd4/iDVDThemeInventory.html

  • How do it get my contacts into the cloud contacts for siri to recognize

    I've looked through the Siri help stuff, and there' slots of things that tell me to put my info/contact into Siri at Settings / Siri / My Info.  Great, but when I select that, I get an "All icloud" contact list.  Since I have mself, wife, colleagues already in my contacts (MS Exchange) already -- how do I simply "copy" them into the icloud contact group????  I certainly don't want ot have to re-enter them twice. Also, I'm on a PC, is there no web interface from my PC to my icloud account?  Any help greatly appreciated -- I'm obviously on the new 4S ...

    Welcome to the Apple community.
    If you deleted your contacts from your contacts app, they will also be deleted in iCloud.
    However if you deleted your account or simply turned contacts syncing off, you should be able to log back into your account or re-enable contacts syncing and they would repopulate your contacts app.
    Could you perhaps tell us which of these you have done.

  • How To Combine 2 Disc Partitions Into 1?

    I'm setting up a G4 Tower Power Mac gotten from someone else, all the data and applications have been deleted/erased, but the hard drive has two 74.5 GB partitions for some reason. Not interested in the reason actually - just want to know how (if possible) to make them into just ONE hard drive again? I can access Disk Utility by starting the computer up with the new Tiger install disc I purchased, but can only find ways to make MORE partitions in Disk Utility, not how to remove/combine existing partitions. TIA!

    I think you just need to reformat the disk without
    partitioning it and not think of it as rejoining the
    existing partitions.
    Thanks! But I'm not sure how to "format" (or reformat) -- plugging format into the Mac Help Viewer brings me information on how to "erase" information off a disk using Disk Utility. However, when I open Disk Utility it shows that there are TWO disks to erase and my point is to have only ONE disc? Someone has already used Disk Utility to "erase" the two partitioned disks on this HD. Please excuse my Mac/Apple ignorance, I have the feeling this is one of those really simple things that just isn't getting through to my befuddled mind.

  • KM4M how to enable both onboard video and video card radeon 7000

    My motherboard is KM4M and I have a radeon 7000(this card has 2 heads: one DVI and one VGA), actually I need 3 monitors at the same time. when I install the card, the onboard video disappeared. how to enable all of them?
    windows 2003
    athlon xp 2800
    Thansks

    all onboard vga turn of once a vga cards put in
    the 7000 and another pci vga card should work

  • How do I load new kuler themes into photoshop CS6

    How do I load new kuler themes into photoshop CS6?
    That's it, plus the Kuledr desktop app (Mac version) always gives me a Kuler Klash?

    Are you sure it is not stand alone?  Google Sketchbook Express & Photoshop CS6, and you get no meaningful hits.  Google just Sketchbook Express and it brings up links than say stuff like:
    If you've just switched to Mac and are looking for a replacement for MS Paint, then SketchBook Express is a fun drawing application that's suitable for everything from a quick doodle to professional sketching.
    SketchBook Express uses professional-grade tools that enable you to produce some highly impressive results. The streamlined interface allows for what is known as "gesture-based marking menus" which mean that different tools are available to you at the click of a mouse. However, to get the most out of SketchBook Express, you'll need a pen and tablet device.
    There are many preset tools,
    Read more 
    Pros 
    Suitable for doodling and professional sketching
    Good alternative to MS Paint
    Easy to switch main tools
    Cons 
    Best to be used with pen and tablet device
    May not be fully comptaible with all tablets
    Lacks advanced sketching tools

  • How do I open my old Appleworks documents which have turned into Unix Executable Files?  I would like to convert them into Pages documents.

    How do I open my old Appleworks documents which have turned into Unix Executable Files?  I would like to convert them into Pages documents.  I also have old Word Perfect documents which have become similarly unopenable.

    Best bet might be to try opening them using LibreOffice [free] and save them to .doc.
    Do you really want to save them as .pages files? You are jumping from the frypan into the fire. Yet another proprietary format that Apple has again deadended with no working translation.
    Peter

  • HT1338 I have just bought a new Mac Pro after my old one died after nearly 10 years. I have most of my music backed up on CDs, but when i load them into iTunes they are only identified as Track 1, 2, etc. Can I transfer from my iPod and how?

    I have just bought a new Mac Pro after my old one died after nearly 10 years. I have most of my music backed up on CDs, but when i load them into iTunes they are only identified as Track 1, 2, etc. Can I transfer from my iPod and how?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • How do I best integrate existing laptops for a new server?  Can I use the existing home folders on the laptops and make them into Network Users?

    How do I best integrate existing laptops for a new server?  Can I use the existing home folders on the laptops and make them into Network Users?

    Yes it will work.  I've done it for a few users in my small office.  As with anything, there are quirks that you may or may not experience.  Most quirks are app-related, due to app developers hard-coding absolute paths into their apps for things like temp files (Photoshop).  Strategies for resolving these sorts of quirks can be found via google.  You would probably have seen these quirks already when using server-based home folders for your kids.  If you haven't noticed them, then you're probably fine.
    The tech note you cited should be fine.  It doesn't explicitly say so, but you'll need to enable ssh on your server, at least temporarily, so you can upload your home folder to the server using scp, rsync, etc.  Don't try to copy the files up to the server via Finder.
    Once all your files are transferred to the server and in the right place, make sure to chown them on the server, so they are owned by the userID you created for yourself on the server.
    As with anything this involved, make a good backup of your laptop first.
    Note I have one user that isn't too happy with the responsiveness of the periodic mobile home syncing.  She has about a decade of e-mail in her home folder, probably 50 to 100 emails per day, many with attachments.  Mobile home syncing takes a long time to check and sync this huge tree of itty-bitty files, eevn with server-side file tracking turned on.  The other users are happy.
    The nice thing about mobile home syncing is that when a user "graduates" to an age where they've earned their own laptop, you can change them from a server home user to a mobile home user, with a minimum of fuss.  Also, if you lose or break a laptop, you can add a new replacement laptop to your network, and pull-down a replica of the home folder from the server, with almost no downtime.

  • I have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i had one for a long time, then when i got the ipad i didn't realize they would all still work under one so i set up the second one on that
    then when i got the new iphone i put in the info for the first and main one from my mac pro and it would not work at all, and i knew it was right, then it asked me to create a new one or i couldnt finish the setup
    hence why i have 3 now
    hard to believe you cannot combine into one
    oh well, i will just make them all accessible for all 3
    thanks

  • I have several pics of my new grandson throughout the year.  How do I combine them into one event

    I have several pics of my new grandson throughout the year.  How do I combine them into one event

    You can drag and drop photos from one Event to another. Or you can flag them and use the Events: Add Flagged photos to Select Event.
    However, why not use an Album for the job?

  • I have two different itunes music files on my computer.  How do I combine them into one file?

    I have two different itunes music files on my computer.  How do I combine them into one file?

    I don't think so. The only other ID I have is a developer id, and I didn't get that until several months after I got the phone. In addition purchases I made from the App Store onthe phone would sync up with It unes on the Mac meaning it would be the same id.
    However I looked at the AppStore on my phone while it was connected to the Mac with iTunes open, and now the balance has changed to the same as the others.

  • I have two apple Id accounts how do I merge them into one account

    I have two apple Id accounts how do I merge them into one account

    you can't merge Apple ID's
    From the FAQ: http://support.apple.com/kb/HT5622
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

Maybe you are looking for