2024-07-29 23:20:16 +02:00
|
|
|
### This page will show you some recommended apps to use with HackberryPi
|
|
|
|
|
|
|
|
## How to use mouse in commandline
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get install gpm
|
|
|
|
```
|
|
|
|
Then you can use mouse in commandline
|
2024-07-29 23:24:11 +02:00
|
|
|
|
2024-07-29 23:24:28 +02:00
|
|
|
## How to install a terminal web browser
|
2024-07-29 23:24:11 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get install w3m-image
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you can surf the internet with commands like
|
|
|
|
|
|
|
|
```sh
|
|
|
|
w3m google.com
|
|
|
|
```
|
2024-07-29 23:27:01 +02:00
|
|
|
[w3m user mannuel](https://w3m.sourceforge.net/MANUAL)
|
2024-07-29 23:29:06 +02:00
|
|
|
|
|
|
|
## How to install a matrix-like screensaver
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get install cmatrix
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you can run it by typing
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cmatrix
|
|
|
|
```
|