gBar/README.md

214 lines
8.6 KiB
Markdown
Raw Normal View History

# gBar
2023-01-13 15:13:56 +00:00
My personal blazingly fast and efficient status bar + widgets, in case anyone finds a use for it.
2023-01-14 22:28:39 +00:00
*gBar: **G**TK **Bar***
2023-01-13 15:13:56 +00:00
## Prerequisites
*If you don't have the optional dependencies, some features are not available.*
2023-01-13 15:13:56 +00:00
- wayland
- Hyprland(Optional -> For workspaces widget)
2023-02-06 09:04:34 +00:00
- nvidia-utils(Optional -> For Nvidia GPU status)
2023-01-13 15:13:56 +00:00
- bluez(Optional -> For Bluetooth status)
- GTK 3.0
- gtk-layer-shell
- PulseAudio server (PipeWire works too!)
2023-06-01 21:13:51 +00:00
- pamixer
- libsass
2023-01-13 15:13:56 +00:00
- meson, gcc/clang, ninja
2023-02-21 10:27:40 +00:00
## Building and installation (Manually)
1. Clone gBar
2023-05-04 15:02:03 +00:00
```
git clone https://github.com/scorpion-26/gBar
2023-05-04 15:02:03 +00:00
```
2. Configure with meson
2023-01-13 15:31:34 +00:00
2023-01-13 15:13:56 +00:00
*All optional dependencies enabled*
```
2023-03-10 23:46:02 +00:00
meson setup build
2023-01-13 15:13:56 +00:00
```
2023-05-04 15:02:03 +00:00
3. Build and install
2023-01-13 15:13:56 +00:00
```
ninja -C build && sudo ninja -C build install
```
2023-02-21 10:27:40 +00:00
## Building and installation (AUR)
For Arch systems, gBar can be found on the AUR.
You can install it e.g.: with yay
```yay -S gbar-git```
2023-02-26 19:14:23 +00:00
## Building and installation (Nix)
If you choose the Nix/NixOS installation there are a couple of ways to do it but they all require you to have flakes enabled.
- Building it seperately and just running the binary, run nix build in the directory and use the binary from ./result/bin
- Import the flake to inputs and then add `gBar.defaultPackage.x86_64-linux` to either environment.systemPackages or home.packages.
- Use the home manager module. This is done by, as in the previous way, importing the flake and then adding `gBar.homeManagerModules.x86_64-linux.default` into your home-manager imorts section. This exposes the option programs.gBar to home-manager, use it like below.
```nix
# Inputs section
inputs.gBar.url = "github:scorpion-26/gBar";
...
# Inside home config
home-manager.users.user = {
...
imports = [ inputs.gBar.homeManagerModules.x86_64-linux.default ];
...
programs.gBar = {
enable = true;
config = {
Location = "L";
EnableSNI = true;
SNIIconSize = {
Discord = 26;
OBS = 23;
};
WorkspaceSymbols = [ " " " " ];
};
};
};
```
2023-02-26 19:14:23 +00:00
2023-01-13 15:13:56 +00:00
## Running gBar
*Open bar on monitor 0*
```
gBar bar 0
```
*Open audio flyin (either on current monitor or on the specified monitor)*
```
gBar audio [monitor]
```
*Open microphone flyin, this is equivalent to the audio flyin*
```
gBar mic [monitor]
```
*Open bluetooth widget*
```
gBar bluetooth [monitor]
```
2023-01-13 15:13:56 +00:00
## Gallery
![The bar with default css](/assets/bar.png)
2023-01-13 15:31:34 +00:00
2023-01-13 15:13:56 +00:00
*Bar with default css*
2023-01-13 15:31:34 +00:00
2023-01-13 15:13:56 +00:00
![The audio flyin with default css](/assets/audioflyin.png)
2023-01-13 15:31:34 +00:00
2023-01-13 15:13:56 +00:00
*Audio widget with default css*
![The bluetooth widget with default css](/assets/bt.png)
*Bluetooth widget with default css*
2023-01-13 15:31:34 +00:00
## Features / Widgets
Bar:
- Workspaces (Hyprland only. Technically works on all compositors implementing ext_workspace when ```UseHyprlandIPC``` is false, though workspace control relies on Hyprland)
2023-01-13 15:31:34 +00:00
- Time
- Bluetooth (BlueZ only)
- Audio control
- Microphone control
2023-01-13 15:31:34 +00:00
- Power control
- Shutdown
- Restart
- Suspend
- Lock (Requires manual setup, see FAQ)
- Exit/Logout (Hyprland only)
2023-01-28 22:58:27 +00:00
- Battery: Capacity
2023-01-13 15:31:34 +00:00
- CPU stats: Utilisation, temperature (Temperature requires manual setup, see FAQ)
- RAM: Utilisation
2023-02-06 09:04:34 +00:00
- GPU stats (Nvidia/AMD only): Utilisation, temperature, VRAM
2023-01-13 15:31:34 +00:00
- Disk: Free/Total
2023-02-10 16:26:59 +00:00
- Network: Current upload and download speed
- Update checking (Non-Arch systems need to be configured manually)
2023-05-04 14:24:25 +00:00
- Tray icons
2023-01-13 15:31:34 +00:00
2023-01-28 22:59:59 +00:00
Bluetooth:
- Scanning of nearby bluetooth devices
- Pairing and connecting
2023-01-13 15:31:34 +00:00
Audio Flyin:
- Audio control
- Microphone control
2023-01-13 15:31:34 +00:00
## Configuration for your system
2023-01-29 16:49:36 +00:00
Copy the example config (found under data/config) into ~/.config/gBar/config and modify it to your needs.
## Plugins
gBar utilizes a plugin system for custom widgets anyone can create without modifying the source code.
Plugins are native shared-libraries, which need to be placed inside ```~/.local/lib/gBar```, ```/usr/lib/gBar``` or ```/usr/local/lib/gBar```.
2023-01-28 14:12:17 +00:00
Inside example/ there is an example plugin setup. To build and run it, run the following commands inside the example directory:
2023-01-28 14:12:17 +00:00
```
meson setup build -Dprefix=~/.local
```
for the local user
OR
```
meson setup build
```
for all users
```
ninja -C build install
gBar gBarHelloWorld
```
The second argument is the name of the shared library (without 'lib' and '.so').
2023-09-01 01:14:36 +00:00
For more examples on how to use the gBar API, you can have a look at the built-in widgets (AudioFlyin.cpp, BluetoothDevices.cpp, Bar.cpp) as they use the same API.
2023-01-13 15:31:34 +00:00
2023-01-13 15:13:56 +00:00
## FAQ
### There are already many GTK bars out there, why not use them?
- Waybar:
Great performance, though limited styling(Almost no dynamic sliders, revealers, ...) and (at least for me) buggy css.
- eww:
2023-01-14 22:28:39 +00:00
Really solid project with many great customization options. There is one problem though: Performance.\
2023-01-13 15:13:56 +00:00
Due to the way eww configuration is set up, for each dynamic variable (the number of them quickly grows) you need a shell command which opens a process.
This became quickly a bottleneck, where the bar took up 10% of the CPU-time due to the creation of many processes all the time (without even considering the workspace widget).
gBar implements all of the information gathering(CPU, RAM, GPU, Disk, ...) in native C++ code, which is WAY faster. In fact, gBar was meant to be a fast replacement/alternative for eww for me.
And lastly: Implementing it myself is fun and a great excuse to learn something new!
### Can you implement feature XYZ? / I've found a bug. Can you fix it?
This project is meant to be for my personal use, though I want it to be easily used by others without bugs or a complicated setup. This means the following:
- If you found a bug, please [open an issue](https://github.com/scorpion-26/gBar/issues/new/choose) and I'll try to fix it as quickly as I can.
- If you're missing a particular feature, please [open an issue](https://github.com/scorpion-26/gBar/issues/new/choose) as well and I'll see what I can do, although I can't guarantee anything. Small requests or features I'll find useful too will probably be implemented in a timely fashion though.
2023-01-13 15:13:56 +00:00
### What scheme are you using?
The colors are from the Dracula theme: https://draculatheme.com
### I want to customize the colors
2023-01-28 16:29:10 +00:00
First, find where the data is located for gBar. Possible locations:
- In a 'gBar' directory found in any of the directories listed by `echo $XDG_DATA_DIRS`
2023-01-28 16:29:10 +00:00
- /usr/share/gBar
- /usr/local/share/gBar
- ~/.local/share/gBar
- If you cloned this repository locally: Inside css/
Copy the scss and css files from within the data direction into ~/.config/gBar. e.g.:
```
mkdir ~/.config/gBar/
cp /usr/local/share/gBar/* ~/.config/gBar/
```
This will override the default behaviour. If you have sass installed, you can modify the scss file and then regenerate the css file accordingly. Else modify the css file directly.
2023-01-13 15:31:34 +00:00
### The margins of the bar are inconsistent/messed up / Custom CSS broke.
If you have a custom style.[s]css, make sure that the margins/names/... are the same as the ones found in ```style/style.[s]css```.\
*As of commit f78758c margins are no longer used in the default css. If you didn't play around with margins, you can safely remove them from your css*\
If you've checked the css against upstream gBar and the issue persists, please [open an issue](https://github.com/scorpion-26/gBar/issues/new/choose).
2023-01-13 15:13:56 +00:00
### The Audio/Bluetooth widget doesn't open
Delete ```/tmp/gBar__audio```/```/tmp/gBar__bluetooth```.
This happens, when you kill the widget before it closes properly (Automatically after a few seconds for the audio widget, or the close button for the bluetooth widget). Ctrl-C in the terminal (SIGINT) is fine though.
2023-01-13 15:13:56 +00:00
### CPU Temperature is wrong / Lock doesn't work / Exiting WM does not work
See *Configuration for your system*
2023-01-13 15:13:56 +00:00
### The icons are not showing!
Please install a Nerd Font from https://www.nerdfonts.com (I use Caskaydia Cove NF), and change style.css/style.scss accordingly (Refer to 'I want to customize the colors' for that). You _will_ need a Nerd Font with version 2.3.0 or newer (For more details see [this comment](https://github.com/scorpion-26/gBar/issues/5#issuecomment-1442037005))
2023-01-13 15:13:56 +00:00
2023-05-04 14:24:25 +00:00
### The tray doesn't show
Some apps sometimes don't actively query for tray applications. A fix for this is to start gBar before the tray app
2023-05-04 15:15:45 +00:00
If it still doesn't show, please open an issue with your application.
The tray icons are confirmed to work with Discord, Telegram, OBS, Steam and KeePassXC
2023-05-04 14:24:25 +00:00
### Clicking on the tray opens a glitchy transparent menu
This is semi-intentional and a known bug (See https://github.com/scorpion-26/gBar/pull/12#issuecomment-1529143790 for an explanation). You can make it opaque by setting the background-color property of .popup in style.css/style.scss