A status bar generator for lemonbar, inspired by i3blocks and dwmblocks.
Report Bug
·
Request Feature
A status bar generator for lemonbar, inspired by i3blocks and dwmblocks, written in plain C.
Lemonbar reads from stdin for the status, it supports clickable areas, the commands will be written to stout.
Lemonblocks tries to make feeding the bar easier. You can define your own modules which you can asign signals. Every time you want to update one of your modules, you can send a signal to the instance of lemonblocks to run the associated command. This means that you don't have to run a script at certain intervals, instead you update it only when necessary.
- lemonbar Lemonbar is a very leightweight bar. The original doesn't support XFT fonts, for that you will have to use a fork, such as this one, but if you want to have emojis you should probably use this fork.
- (Optional) Ubuntu Mono Font
- (Optional) Twemoji Font (Twitters emojis)
- Clone the repo
git clone https://github.com/b3nj5m1n/lemonblocks.git
- Bulid & Install lemonblocks
sudo make install
- Copy default config
make config
- Copy scripts
sudo make scripts
The script called start.sh will start lemonbar with sensible default settings as well as lemonblocks.
The script is moved to /usr/bin when installing, you can call it like this:
start-lemonbar.sh &
# 3 is the signal for your module
pkill lemonblocks -3
You can configure your modules in the file config.txt located at ~/.config/lemonblocks. (Run make config to create the directory and copy the default config)
# Seperate values with a , (No space afterwards)
# Interval Signal Icon Command Alignment Initial Status BgColor FgColor LeftClick MiddleClick RightClick ScrollUp ScrollDown Prefix Suffix
# Interval of 0 means it will only be updated by signals. NULL means nothing or default value for icons, colors and mouse events
# Example config:
0,3,🍍,/usr/bin/lbscripts/powermenu.sh,l, ,NULL,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
1,4,NULL,/usr/bin/lbscripts/bspwm.sh,l, ,NULL,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
1,5,NULL,/usr/bin/lbscripts/cmus.sh,l, ,NULL,f8f8ff,cmus-remote -u; pkill lemonblocks -5,NULL,NULL,cmus-remote -v +1%,cmus-remote -v -1%,[,]
0,6,🔈,/usr/bin/lbscripts/volume.sh,r, ,aa1d1f21,f8f8ff,amixer set Master toggle; pkill lemonblocks -6,NULL,NULL,amixer -q sset Master 1%+; pkill lemonblocks -6,amixer -q sset Master 1%-; pkill lemonblocks -6,[,]
0,7,📁,/usr/bin/lbscripts/free-space.sh,r, ,aa1d1f21,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
0,8,🐒,/usr/bin/lbscripts/layout.sh,r, ,aa1d1f21,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
300,10,NULL,/usr/bin/lbscripts/network.sh,r, ,aa1d1f21,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
30,11,⏰,/usr/bin/lbscripts/date.sh,r, ,aa1d1f21,f8f8ff,NULL,NULL,NULL,NULL,NULL,[,]
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.