-
Notifications
You must be signed in to change notification settings - Fork 6
/
INSTALL
53 lines (40 loc) · 1.58 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
General order of actions:
cmake . && make && make install
Makefile's traditional DESTDIR works with CMake!
CMake has its own configuration. For --prefix use:
cmake -DCMAKE_INSTALL_PREFIX=/my/prefix .
BMPanel2 currently installs following files:
PREFIX/bin/bmpanel2
PREFIX/share/bmpanel2/themes/native/*
PREFIX/share/bmpanel2/themes/transpy/*
--------------------------------------------------------------
**** TODO: This is deprecated ****
You can also force separation for binary and data in two
completely different places.
cmake -DBMPANEL2_BINARY_PATH=/full/path/to/bin
-DBMPANEL2_DATA_PATH=/full/path/to/data .
In that case:
BMPANEL2_BINARY_PATH/bmpanel2
BMPANEL2_DATA_PATH/themes/native/*
BMPANEL2_DATA_PATH/themes/transpy/*
--------------------------------------------------------------
But using this variables isn't recommended! If you don't know what you're doing,
contact me, I'll explain and fix this guide.
Please keep in mind, bmpanel2 binary searches for themes in XDG standard
folders! Default ones should be somewhat:
~/.local/share/bmpanel2/themes
/usr/share/bmpanel2/themes
/usr/local/share/bmpanel2/themes
But to be sure, use:
env | grep XDG
Bmpanel2 also has a config file located in (depends on XDG env vars):
~/.config/bmpanel2/bmpanel2rc
But in order to run bmpanel2 and test it, you don't need this. Just use:
bmpanel2 -h
or
bmpanel2 --help
There is a theme override parameter (default one is 'native'):
bmpanel2 --theme=transpy
--------------------------------------------------------------------------------
My email:
nsf <no.smile.face@gmail.com>