Advertisement
Guest User

Razor-Qt Chakra Tutorial

a guest
Dec 7th, 2011
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. Razor-qt is an advanced, easy-to-use, and fast desktop environment based on Qt technologies. It has been tailored for users who value simplicity, speed, and intuitive interface. Unlike desktop environments, Razor-qt also works fine with weak machines.
  2.  
  3. It is somewhat like LXDE in trying to provide a fast and nimble desktop environment, which is lightweight yet featurefull.
  4.  
  5. Some people think that the project is dead, but that's not the case. Development is going on at a slow, but steady pace, which is evident by looking at their GitHub profile: https://github.com/Razor-qt/razor-qt
  6.  
  7. Installing and using Razor-Qt in chakra is very simple and provides users with an alternative desktop environment for their Qt loving distribution. Since Chakra tries to be GTK free as much as possible and as Razor-Qt is all Qt and C++, using Razor-Qt in Chakra can be quite a rewarding experience.
  8.  
  9. Installing Razor-Qt in Chakra is very simple. After ensuring that we have CCR installed, we can install two versions of the DE: the stable version, or the latest one from their GIT repository. I would recommend installing the GIT version as it is much more complete than their last stable release.
  10.  
  11. For the stable version:
  12. ccr -S razor-qt
  13.  
  14. For the GIT version:
  15. ccr -S razor-qt-git
  16.  
  17. After executing the above command, Chakra will download the sources, compile the package and then install it on the system.
  18.  
  19. Now before we can use it, we need to add it to KDM so we can choose it from the session selection menu before logging in. This way we'll be able to use Razor-Qt and traditional KDE, both.
  20.  
  21. We need to edit the following file:
  22. /usr/share/config/kdm/kdmrc
  23.  
  24. You can edit this file by using a command line utility like vim or nano, or by using a graphical application like Kate, with root privildges.
  25.  
  26. To edit with nano:
  27. sudo nano /usr/share/config/kdm/kdmrc
  28.  
  29. To edit with Kate:
  30. kdesu kate /usr/share/config/kdm/kdmrc
  31.  
  32. In that file, we must find the section named "SessionsDirs" and at the end of that line add a comma and add: /usr/share/xsessions
  33.  
  34. For eg: on my system, the line before editing was:
  35. SessionsDirs=/usr/share/config/kdm/sessions,/usr/share/apps/kdm/sessions
  36.  
  37. After editing:
  38. SessionsDirs=/usr/share/config/kdm/sessions,/usr/share/apps/kdm/sessions,/usr/share/xsessions
  39.  
  40. Now we just need to save the changes and log out. In the KDM, we must now be able to select the option of using Razor-Qt from there, which will use KWin as the window manager.
  41.  
  42. And you're done!
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement