Fixed logo

This commit is contained in:
aristocratos 2021-08-28 22:13:03 +02:00
parent 214d8962e0
commit d79fef3119
2 changed files with 15 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -123,30 +123,30 @@ Main menu.
Options menu. Options menu.
![Screenshot 4]() ![Screenshot 4]()
## Installation ## Manual compilation and installation
#### Manual compilation and installation **Needs GCC 10 or higher, (GCC 11 or above strongly recommended for better CPU efficiency in the compiled binary).**
Needs GCC 10 or higher, (GCC 11 or above strongly recommended for better CPU efficiency in the compiled binary). **The makefile also needs GNU coreutils and sed (should already be installed on any modern distribution).**
The makefile also needs GNU coreutils and sed (should already be installed on any modern distribution).
>Install dependencies (example for Ubuntu 21.04 Hirsute) > **Install dependencies (example for Ubuntu 21.04 Hirsute)**
``` bash ``` bash
sudo apt install coreutils sed git build-essential gcc-11 g++-11 sudo apt install coreutils sed git build-essential gcc-11 g++-11
#use gcc-10 g++-10 if gcc-11 isn't available # use gcc-10 g++-10 if gcc-11 isn't available
``` ```
>Clone and compile > **Clone and compile**
**NOTICE! Manually set PLATFORM and ARCH if not compiling for host system**
``` bash ``` bash
git clone https://github.com/aristocratos/btop.git git clone https://github.com/aristocratos/btop.git
cd btop cd btop
# use "make -j X" where X is threads, to manually set number of threads, the makefile will use all available cores by default on Make 4.3+
make make
``` ```
>to install > **Install**
``` bash ``` bash
# use "make install PREFIX=/target/dir" to set target, default: /usr/local # use "make install PREFIX=/target/dir" to set target, default: /usr/local
@ -154,7 +154,9 @@ make
sudo make install sudo make install
``` ```
>to make btop always run as root (or other user), (no need for `sudo` to enable signal sending to any process and to prevent /proc read permissions problems on some systems) > **Set suid bit to make btop always run as root (or other user)**
No need for `sudo` to enable signal sending to any process and to prevent /proc read permissions problems on some systems.
``` bash ``` bash
# run after make install and use same PREFIX if any was used at install # run after make install and use same PREFIX if any was used at install
@ -163,19 +165,19 @@ sudo make setuid
``` ```
>to uninstall > **Uninstall**
``` bash ``` bash
sudo make uninstall sudo make uninstall
``` ```
>to remove any object files from source dir > **Remove any object files from source dir**
```bash ```bash
make clean make clean
``` ```
>to remove all object files, binaries and created directories in source dir > **Remove all object files, binaries and created directories in source dir**
```bash ```bash
make distclean make distclean