Upon request, and boredom, I am going to write up a quick guide on how to install Bspwm, a panel (bar), and a nice default config, hopefully an understanding of how to interact withBspwm, and configure it.
Bspwm is a tiling window manager with some really nifty features, and Sxhkd is a hotkey program made by the same guy, that just works really well alongside Bspwm (it is always smart to keep autostarts and hotkeys WM/DE independent).
For those who haven't built a package from source before, go ahead and check to see if Bspwm and Sxhkd are in your repos. If not, no big deal - they probably aren't. The easiest way to install this will be through source, anyway - something of this size takes little to no time to compile.
First of all, you're going to need git if you don't already have it. Install via whatever package manager or software center your distro uses. Not sure if this is the right audience to ask this question, but if you aren't running X, Bspwm is an X based WM, so make sure you have X and an appropriate video driver for X as well. You will need Xcb for Bspwm, so install the appropriate libs for Xcb as well (different names on different distros). For compiling, in the off chance your distro doesn't have them, install gcc and make.
Open up your terminal, and pull Bspwm and Sxhkd from upstream.
git clone https://github.com/baskerville/bspwm.git
git clone https://github.com/baskerville/sxhkd.git
For those who don't know any git stuff, that is just pulling the source code from the repos they are being "hosted" (well...) on at Github (Github is not Git, just a popular service). Now, cd into the bspwm folder, and compile it.
make && sudo make install
cd ..
Now, cd into the sxhkd folder.
There should be a folder in the bspwm called "Examples" which has stock config files for Sxhkd and Bspwm. They go in the ~/.config directory, like most configs should, but hardly ever seem to. Go ahead and make sub directories for both Bspwm and Sxhkd, then copy the configs over, and allow them to be executed.
mkdir ~/.config/bspwm
cp /where/you/put/bspwm/examples/bspwmrc ~/.config/bspwm/bspwmrc
mkdir ~/.config/sxhkd
cp /where/you/put/bspwm/examples/sxhkdrc ~/.config/sxhkd/sxhkdrc
chmod +x ~/.config/bspwm/bspwmrc
chmod +x ~/.config/sxhkd/sxhkdrc
Since this is an X based WM (for now), go ahead and start it up in your xinitrc (~/.xinitrc). Just scroll to the bottom, comment out whatever WM or DE you are currently using (should be something along the lines of "exec gnome-shell" or "exec openbox-session" - comments are pounds - #), and add the following in its place.
sxhkd &
exec bspwm
That's it, should be installed with stock settings. That are fairly good looking. When you reboot, it should boot into a blank session, no terminal, no bar, nothing. Press Mod + Enter (by default, Mod4, so Super + Enter), and it will spawn a terminal (either xterm or Urxvt by default - pretty sure it's urxvt). You probably have one of the two installed, but if not, switch to another VT, login, and install urxvt - and while you're at it, grab xterm (good to have xterm anyway, since it seems to be called by some X programs).
Since you probably aren't crazy, and want a bar/panel, things change a bit. You already have Bspwm installed, and can control it via Sxhkd. However, we're going to want to include space for your panel, and the panel itself. If you're an Xfce4 user, and want to use the Xfce4 panel, you can, or you can use Dzen2, BAR, Bar with Dzen, or any of the hundreds of esoteric bars out there. I use Bar with Dzen2, but since most users don't need the useless eyecandy and pain of Dzen2 clickiness, let's install Bar.
Essentially the exact same way - pull the repos, build the source, and add a few things to your PATH. Pretty basic Linux stuff that's good to know regardless.
git clone https://github.com/baskerville/sutils.git
git clone https://github.com/baskervile/xtitle.git
Build those the same way you built Bspwm and Sxhkd.
Now, there are lots of Bars, but we will be using Bar Aint Recurive - BAR - since it's UTF8, and all that jazz.
git clone https://github.com/LemonBoy/bar.git
Again, build it the same way. When it's compiled and installed, go ahead and make a directory to put the scripts for the panel config. It doesn't matter whatsoever where you put it, so I keep them on my secondary HDD, for backup reasons. You might consider making a directory in you home, such as ~/Scripts. Doesn't matter. Where ever you might make it though, it needs to be included in your path. Since most distros come with Bash, and use Bash, as the shell, and not Zsh, or Fish, or something esoteric, we'll edit your /etc/profile. Instead of using Gedit, or Geany, or some GUI editor, it is easiest just to use nano, vi, vim, or even a cat to add the text to your Bash profile. It is owned by root, though, so simply run sudo in front of the command (e.g., sudo nano /etc/profile). We need to add the path to the directory of your panel scripts, and declare the PANEL_FIFO variable, copy the panel scripts, and then you're set.
Scroll down to where it says PATH="/.../", and add the following to the end, inside of the closing quotation mark:
:/path/to/your/scripts/directory
export PANEL_FIFO="/tmp/panel-fifo"
I realize that may sound confusing, so here is a quick screenshot of top of my /etc/profile (which is emulated by my Zsh profile)
Easy enough, right?
Now, just copy the panel scripts from the Bspwm folder, and chmod them, and make sure the panel is set to startup at the start of X.
cp /bspwm/examples/panel/panel /path/to/scripts/folder
cp /bspwm/examples/panel/panel_colors /path/to/scripts/folder
chmod +x /path/to/scripts/panel
Go ahead and add "panel &" after sxhkd in your xinitrc so that the panel starts automatically, and reboot, and you're set! Bspwm, and a panel. Configs are easy, and plentiful online. Ask if anything is unclear, or you want my dotfiles.
Happy hacking!