A fast and easy-to-use status bar
Go to file
Michael Carlberg d1eed705e0 fix(core): Only include network module header if compile flag is set 2016-05-24 12:53:41 +02:00
cmake fix(build): Improved dependency checks 2016-05-24 04:06:29 +02:00
contrib task(build): Bumped PKGBUILD version 2016-05-24 07:20:52 +02:00
examples task(core): Basic sample configurations 2016-05-24 09:24:27 +02:00
include fix(core): Be more clean why the module is invalid 2016-05-24 06:30:06 +02:00
scripts init(git): Base commit 2016-05-19 20:23:45 +02:00
src fix(core): Only include network module header if compile flag is set 2016-05-24 12:53:41 +02:00
.exrc init(git): Base commit 2016-05-19 20:23:45 +02:00
.gitignore init(git): Base commit 2016-05-19 20:23:45 +02:00
.gitmodules init(git): Base commit 2016-05-19 20:23:45 +02:00
.ycm_extra_conf.py init(git): Base commit 2016-05-19 20:23:45 +02:00
CMakeLists.txt fix(build): Typo 2016-05-24 04:30:59 +02:00
LICENSE init(git): Base commit 2016-05-19 20:23:45 +02:00
README.md docs(build): Update 2016-05-24 04:21:02 +02:00
build.sh fix(build.sh): Add newline after prompt 2016-05-24 04:44:02 +02:00
config fix(configs): Cleanup to avoid having comments spread all over 2016-05-19 23:57:05 +02:00

README.md

Lemonbuddy

A fast and easy-to-use tool for Lemonbar.

Lemonbuddy aims to help users build beautiful and highly customizable status bars without messing with named pipes, MacGyver-like scripting or non-blocking loops lobotomizing your CPU.

Please note that the project hasn't been tested, other then by myself, so bugs and various bumps is to be expected. Please report any issues here on github.

Installation

Arch Linux

Install the AUR package lemonbuddy

Void Linux

A package will be written for XBPS so stay tuned.

Dependencies:

A C++ compiler with C++14 support. For example clang.

  • lemonbar (obviously)
    • NOTE: The application has only been tested against the single-mon fork. If you have trouble with your version of lemonbar, install the fork which is included in the contrib folder.

      There are plans to integrate lemonbar into the project.

  • cmake
  • boost
  • libx11
  • libxrandr
  • wireless_tools (optional: used by the network module)
  • alsa-lib (optional: used by the volume module)
  • libmpdclient (optional: used by the mpd module)
  • libsigc++ (optional: used by the i3 module)

Installing using pacman:

$ pacman -S cmake boost libx11 libxrandr wireless_tools alsa-lib libmpdclient libsigc++ i3-wm

Installing using xbps-install:

$ xbps-install -S cmake alsa-lib-devel boost-devel i3-devel libX11-devel libXrandr-devel libmpdclient-devel libsigc++-devel wireless_tools-devel

Installing using apt-get:

NOTE: libmpdclient-dev and i3-wm are located in the universe repository, so if you want support for the mpd/i3 modules you need to make sure it's included in the list of sources in /etc/apt/sources.list. For example:

deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe

$ apt-get install cmake libx11-dev libxrandr-dev libboost-dev libiw-dev libmpdclient-dev libsigc++-dev i3-wm

Building from source

Automatic installation using ./build.sh

If you haven't worked with builds before you could try to run the following command chain:

$ git clone --branch 0.1.1 --recursive https://github.com/jaagr/lemonbuddy.git
$ cd lemonbuddy
$ ./build.sh

NOTE: git-perl is required for submodules to work in Void Linux

$ git clone --branch 0.1.1 --recursive https://github.com/jaagr/lemonbuddy.git
$ mkdir lemonbuddy/build
$ cd lemonbuddy/build
$ cmake ..
# Optionally list and edit build variables
$ make edit_cache
$ sudo make install


License

The MIT License (MIT)
Copyright (c) 2016 Michael Carlberg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.