You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -199,18 +199,20 @@ cd battery-monitor-master
199
199
meson compile -C builddir --verbose
200
200
meson install -C builddir
201
201
```
202
-
It will install all files under `/home/<yourusername>/.local`.
202
+
It will install all files under `/home/<yourusername>/.local`. To **remove** the locally (`/home/<yourusername>/.local`) installed files, run:
203
+
```
204
+
ninja uninstall -C builddir
205
+
```
203
206
2. To manually install for all users:
204
207
```
205
208
rm -rf builddir
206
209
meson setup builddir
207
210
meson compile -C builddir --verbose
208
211
sudo meson install -C builddir
209
212
```
210
-
This step requires **Administrative Privilege**. So, be careful before using this.
211
-
3. To **remove** the locally (`/home/<yourusername>/.local`) installed files, run:
213
+
The last step requires **Administrative Privilege**. So, be careful before using this. To **remove** the installed files, run:
212
214
```
213
-
ninja uninstall -C builddir
215
+
sudo ninja uninstall -C builddir
214
216
```
215
217
216
218
2.**Option 2:** Build a debian package and install it. To build a debian package on your own:
@@ -246,7 +248,7 @@ If you are interested to contribute and enrich the code, you are most welcome. Y
246
248
**NB:** Using the issue template or PR template is **not** mandatory.
247
249
248
250
### For Developers
249
-
If you want to test **Battery Monitor**,
251
+
I am managing these apps all by myself during my free time. There are times when I can't contribute for months. So a little help is always welcome. If you want to test **Battery Monitor**,
0 commit comments