UNPKG

arch-wiki-md-repo

Version:

All arch-wiki articles in markdown format, updated every two days.

63 lines (41 loc) 2.4 kB
[BMPanel](https://code.google.com/p/bmpanel2/) (*BitMap Panel*) is a lightweight, NETWM compliant panel for X11 Window System, which contains a desktop switcher, taskbar, system tray and clock. The application is inspired by simplicity of fspanel. BMPanel has a modern look and feel, while keeping itself tiny and small. ## Contents * [1 Installation](#Installation) * [2 Themes](#Themes) * [3 Starting bmpanel](#Starting_bmpanel) * [4 Launchbar](#Launchbar) ## Installation BMPanel is available as [bmpanel2](https://aur.archlinux.org/packages/bmpanel2/) in the [AUR](/index.php/AUR "AUR"). If you prefer the legacy version not mantained anymore install [bmpanel](https://aur.archlinux.org/packages/bmpanel/). ## Themes BMPanel2 themes are available in the [bmpanel2-themes](https://aur.archlinux.org/packages/bmpanel2-themes/) package. Further information about available themes can be found [here](http://code.google.com/p/bmpanel2/wiki/ThemeGallery). Here you can find more themes. Extract them to `~/.local/share/bmpanel2/themes` (respectively `~/.bmpanel/themes` for bmpanel legacy). Altering design of the theme can be done by adapting the `~/.local/share/bmpanel2/themes/*theme name*/theme` file (respectively `~/.bmpanel/themes/*theme name*/theme`). More information on this can be found [here](https://code.google.com/p/bmpanel2/). ## Starting bmpanel To start BMPanel automatically after the login you need to write this to your `~/.xinitrc` file: ``` bmpanel *theme_name* & ``` or: ``` bmpanel2 --theme=*theme_name* & ``` ## Launchbar BMPanel2 features a simple launchbar that you may configure manually. In order for this to work, the theme must have the launchbar enabled. Edit the theme file and make sure that it has something to this extent (the xx's represent icon size): ``` launchbar icon_size xx xx ``` Next, you must edit the config file for bmpanel2, usually located at ~/.config/bmpanel2/bmpanel2rc. For each entry, you must provide the command to execute along with an icon. NOTE: icons must be png files. An example configuration is given below: ``` theme xsocam_dark launchbar exec urxvt icon /usr/share/pixmaps/gnome-term.png exec firefox icon /usr/share/pixmaps/firefox.png exec blender icon /usr/share/pixmaps/blender.png exec urxvt -e htop icon /usr/share/pixmaps/htop.png exec gvim icon /usr/share/pixmaps/gvim.png ```