Announcement

Collapse
No announcement yet.

Dolphin - allow terminal to be placed to the left/right/top/bottom

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Dolphin - allow terminal to be placed to the left/right/top/bottom

    Linking: https://bugs.kde.org/show_bug.cgi?id=362593


    Earlier: Getting Dolphin KF5 sources and building own version to the /opt/: https://www.kubuntuforums.net/showth...l=1#post379038


    Debian based - 'Get the build dependencies': https://wiki.debian.org/BuildingTuto...d_dependencies


    Editing

    .../src/dolphinmainwindow.cpp

    Change:
    Code:
    terminalDock->setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea);
    to
    Code:
    terminalDock->setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
    Compiling

    Code:
    mkdir -p builddir
    Code:
    cd builddir && cmake .. \
         -DCMAKE_BUILD_TYPE=Release \
         -DCMAKE_PREFIX_PATH=/opt/konsole \
         -DCMAKE_INSTALL_PREFIX=/opt/konsole \
         -DLIB_INSTALL_DIR=lib \
         -DKDE_INSTALL_USE_QT_SYS_PATHS=off \
         -DBUILD_TESTING=OFF
    Code:
    make
    Code:
    sudo make install
    Testing

    Konsole:
    Code:
    export LD_LIBRARY_PATH=/opt/konsole/lib; /opt/konsole/bin/dolphin


    Seems to work...
    Last edited by Rog131; May 16, 2016, 01:08 PM.
    Before you edit, BACKUP !

    Why there are dead links ?
    1. Thread: Please explain how to access old kubuntu forum posts
    2. Thread: Lost Information

    #2
    nice one as always @Rog131

    VINNY
    i7 4core HT 8MB L3 2.9GHz
    16GB RAM
    Nvidia GTX 860M 4GB RAM 1152 cuda cores

    Comment


      #3
      That does look very cool and far more usable than it is at the bottom
      If you're sitting wondering,
      Which Batman is the best,
      There's only one true answer my friend,
      It's Adam Bloody West!

      Comment

      Working...
      X