polybar/README.md

119 lines
3.7 KiB
Markdown
Raw Normal View History

2016-05-19 14:41:06 +00:00
Lemonbuddy
==========
A fast and easy-to-use tool for [Lemonbar](https://github.com/LemonBoy/bar/).
2016-05-19 14:41:06 +00:00
**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.
2016-05-19 14:41:06 +00:00
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-git`
### 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
2016-05-24 02:06:29 +00:00
- 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)_
2016-05-24 02:06:29 +00:00
**Installing using pacman:**
~~~ sh
$ pacman -S cmake boost libx11 libxrandr wireless_tools alsa-lib libmpdclient libsigc++ i3-wm
~~~
2016-05-24 02:06:29 +00:00
**Installing using xbps-install:**
~~~ sh
$ xbps-install -S cmake alsa-lib-devel boost-devel i3-devel libX11-devel libXrandr-devel libmpdclient-devel libsigc++-devel wireless_tools-devel
~~~~
2016-05-24 02:06:29 +00:00
**Installing using apt-get:**
2016-05-24 02:21:02 +00:00
> 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:
2016-05-24 02:06:29 +00:00
>
> `deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe`
~~~ sh
$ apt-get install cmake libx11-dev libxrandr-dev libboost-dev libiw-dev libmpdclient-dev libsigc++-dev i3-wm
~~~~
<br>
## 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:
~~~ sh
2016-05-24 12:43:02 +00:00
$ git clone --branch 0.1.2 --recursive https://github.com/jaagr/lemonbuddy.git
$ cd lemonbuddy
$ ./build.sh
~~~
2016-05-24 02:21:02 +00:00
> NOTE: `git-perl` is required for submodules to work in **Void Linux**
#### It is of course recommended that you control the build process yourself.
~~~ sh
2016-05-24 12:43:02 +00:00
$ git clone --branch 0.1.2 --recursive https://github.com/jaagr/lemonbuddy.git
$ mkdir lemonbuddy/build
$ cd lemonbuddy/build
$ cmake ..
2016-05-24 02:21:02 +00:00
# Optionally list and edit build variables
$ make edit_cache
$ sudo make install
~~~
2016-05-24 02:21:02 +00:00
---
<br>
## License
2016-05-24 02:21:02 +00:00
> The MIT License (MIT)<br>
> 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.