Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: A beautiful, minimal and workable Openbox session, with configuration files...

  1. #1
    Join Date
    Sep 2011
    Beans
    116
    Distro
    Ubuntu

    Lightbulb A beautiful, minimal and workable Openbox session, with configuration files...

    Openbox is a simple, lightweight and highly configurable window manager and desktop-environment like the Ubuntu Unity, KDE and Gnome. Here in this post I share some tips and set of configuration files that I have tweaked over the years to use on my laptop, desktop and servers.

    The best part about Openbox is that you could install the Openbox-session alongside Ubuntu Unity, Gnome or KDE sessions and it does not interfere with any of them. Moreover, the Openbox session can be used on an xrdp-server while logging in remotely, where there is still no support for a Gnome-session. The procedure described here for installing Openbox-session applies to Ubuntu and all of its derivatives.

    If one can afford dealing with package management systems other than apt, such as yum, pacman or eopkg, then this tutorial can be implemented in other Linux distributions as well.
    The purpose of this post is to prepare a workable, simple, snappy and responsive desktop environment for the users, yet maintaining a beautiful, aesthetically pleasant (yes, I care for this) desktop with modern touch of effects around the desktop objects and windows. This could especially revive your old machines with low resources.

    The following steps summarise the procedure to prepare an Openbox Desktop session by yourself:



    1. To begin with, one has to install some packages first. Open a terminal and issue the following commands:
    Code:
    sudo apt-get install openbox obmenu tint2 xfce4-panel xfce4-notifyd xfce4-whiskermenu-plugin wget unzip scrot xclip gnome-screensaver plank compton feh conky-all curl lxappearance
    One can skip installing the packages plank, compton, feh, conky-all, curl and lxappearance if they do not care about desktop aesthetics. (I recommend you do install them for the best experience)

    2. Now we need to write some configuration files to use with some of the above packages, though I am not actually going to do it here. Instead I let you download my own file OpenboxInstall.zip (or click here). Place the downloaded zip file in your home folder. [The whole point of supplying the configuration stuff in one zip file is to make the entire procedure simpler for everybody to implement. Plus this configuration pack is the most extended and tweaked one for speed, lightweight, cleanliness and elegance properties, at least for me.]
    Code:
    wget --no-check-certificate -r 'https://docs.google.com/uc?export=download&id=1ZtVXar81IYSGaIbTLdFJuBwRGN0ej_GO' -O OpenboxInstall.zip
    mv OpenboxInstall.zip ~/
    3. Make sure that the downloaded OpenboxInstall.zip file is in your home directory.
    [Caution: If your operating system is Xubuntu or you are already using the XFCE desktop then first backup your original ~/.config/xfce4 directory since we are making changes to this directory.]

    Extract this zip file such that the extracted contents merge with the existing folders and overwrites any existing files within the merged folders.

    The following command will do this for you in one go:
    Code:
    cd ~/ 
    unzip -o OpenboxInstall.zip
    The -o option makes sure it overwrites the files without prompting. It's almost done now.

    4. Open the 'gnome-tweak-tool' (or the unity-tweak-tool) and set the following:
    File manager handle the desktop => Off
    In newer versions of the gnome-tweak-tool (Like in Ubuntu 16.04/18.04), the corresponding option should read:
    Icons on Desktop => Off
    IT IS NOW DONE !!
    BY NOW, YOU ALREADY HAVE A FUNCTIONAL OPENBOX DESKTOP.

    FOLLOWING STEPS ARE OPTIONAL, ONLY FOR THOSE WHO CARE FOR DESKTOP AESTHETICS.
    5. This step is optional.
    Download and install the open-sans-elementary and raleway-elementary fonts from the source links provided in the 'Sources and References' section at the end of this post.
    6. Download and install Moka, arc or MAC iOS icon themes. Also install the arc gnome shell theme.
    First install the arc-theme:
    Code:
    wget https://github.com/horst3180/arc-theme/archive/master.zip
    unzip -o master.zip
    mkdir -p ~/.themes/arc-theme
    mv ./arc-theme-master/common/* ~/.themes/arc-theme
    rm -r arc-theme-master master.zip
    Now install the moka icon theme:
    Code:
    wget https://github.com/snwh/moka-icon-theme/archive/master.zip
    unzip -o master.zip
    mkdir -p ~/.local/share/icons
    mv ./moka-icon-theme-master/Moka ~/.local/share/icons
    rm -r moka-icon-theme-master master.zip
    Now install the arc icon theme:
    Code:
    wget https://github.com/horst3180/arc-icon-theme/archive/master.zip
    unzip -o master.zip
    mkdir -p ~/.local/share/icons
    mv ./arc-icon-theme-master/Arc ~/.local/share/icons
    rm -r arc-icon-theme-master master.zip
    Now open either lxappearance (in terminal) or the gnome-tweak-tool (gnome-tweaks in Ubuntu 18.04 and later) and set the shell theme as arc, and icon theme also as arc.

    7. Log out of current session. Select the Openbox Session from the login screen and then log into your account. If all gone well, your beautiful Openbox Desktop Session should be ready to serve you!
    (Just look for the "openbox gear" at the login screen and select it before logging into your account.)

    __________________________________________________ __________________________________________________ __________________________________________________ _____________
    To undo the customized changes to your openbox session, or to renew the openbox configuration (in case you messed up while playing yourself with the configuration files) the following commands are here for you:
    Code:
    cd ~/.config/ && rm -rf openbox tint2 xfce4 plank
    cd ~/.local/share/ && rm -rf xfce4 plank
    cd ~/ && rm .compton.conf .conkyrc
    __________________________________________________ __________________________________________________ __________________________________________________ ______________

    Sources and References:
    Last edited by sbnwl; November 26th, 2018 at 10:02 AM.

  2. #2
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Lubuntu uses openbox as window manager, so could Lubuntu be the starting point?
    Last edited by Dennis N; April 29th, 2017 at 10:34 PM.

  3. #3
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,209
    Distro
    Ubuntu Budgie Development Release

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Moved to Tutorials
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  4. #4
    Join Date
    Sep 2011
    Beans
    116
    Distro
    Ubuntu

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Thank you Mr. Frogs Hair.

  5. #5
    Join Date
    Sep 2011
    Beans
    116
    Distro
    Ubuntu

    Thumbs up Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Quote Originally Posted by Dennis N View Post
    Lubuntu uses openbox as window manager, so could Lubuntu be the starting point?
    Yes, It can be. In fact you could try any Ubuntu derivative. It's fine.
    Last edited by sbnwl; April 30th, 2017 at 11:04 AM.

  6. #6
    Join Date
    Mar 2017
    Beans
    1,018

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Well done. Nice use of the whisker menu with tint2.
    Tested in Ubuntu-Gnome 17.04 and works.(Had to restart for the openbox session to appear in gdm)
    Just needed a few tweaks to the autostart file to run a polkit authentication agent and set a correct path to
    a desktop wallpaper.
    Also edited the network interface, WOEID and a couple of other settings in the conky config.
    Last edited by again?; April 30th, 2017 at 01:26 PM.

  7. #7
    Join Date
    Sep 2011
    Beans
    116
    Distro
    Ubuntu

    Smile Re: A beautiful, minimal and workable Openbox session, with configuration files...

    @guber2
    Quote Originally Posted by guber2 View Post
    Well done. Nice use of the whisker menu with tint2.
    Tested in Ubuntu-Gnome 17.04 and works.(Had to restart for the openbox session to appear in gdm)
    Just needed a few tweaks to the autostart file to run a polkit authentication agent and set a correct path to
    a desktop wallpaper.
    Also edited the network interface, WOEID and a couple of other settings in the conky config.
    Seen your screenshot and happy to have helped you. I could see you have changed the location for weather forecast by setting appropriate WOEID for your city. I have some suggestions to make it more beautiful:
    1. Use Moka or MAC iOS or arc icon theme.
    2. Use the arc gnome theme in your gnome-session.
    3. Your third launcher icon (for web browser) is missing in the xfce4 panel. Right click on this and edit it using automatic configuration provided for firefox/google-chrome.

    I have also revised the tutorial post accordingly.

    Here is how mine looks like:
    2017-05-01-034110_1366x768_scrot.jpg
    Last edited by sbnwl; May 1st, 2017 at 07:00 AM.

  8. #8
    Join Date
    Apr 2005
    Beans
    36

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Hi,

    Bento Openbox Remix has been out since 2012, please feel free to give it a try and ask questions! https://bentovillage.me/en/a-propos/ https://linuxvillage.org/en/blog/201...to-trusty-rc2/ http://downloads.linuxvillage.org/?C=M;O=D

  9. #9
    Join Date
    Sep 2011
    Beans
    116
    Distro
    Ubuntu

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    @Frogs Hair

    I think nobody reads the Tutorials these days.
    Best would be to place in discussions.

  10. #10
    Join Date
    Feb 2008
    Location
    Texas
    Beans
    29,807
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: A beautiful, minimal and workable Openbox session, with configuration files...

    Hello sbnwl, the tutorial section of the forum is still active and people do read and post new tutorials to this sub-forum, since this is a tutorial this is the correct sub-forum for your thread and will stay here.

    Thanks for posting it and keeping it updated!
    Last edited by wildmanne39; November 20th, 2018 at 02:14 AM.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •