Hackberry-Pi_Zero/Apps/README.md

55 lines
978 B
Markdown
Raw Normal View History

2024-07-31 00:48:31 +02:00
### This page will show you some recommended apps to use with HackberryPi. This page will keep updating
2024-07-29 23:20:16 +02:00
## 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:37:58 +02:00
[w3m user manual](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
```
2024-07-29 23:30:23 +02:00
[cmatrix Github page](https://github.com/abishekvashok/cmatrix)
2024-07-29 23:33:14 +02:00
## How to install a TTY-CLOCK
```sh
sudo apt-get install tty-clock
```
Then you can run it by typing
```sh
tty-clock
```
I will recommend
```sh
tty-clock -c -s
```
to make it show in the middle of the display and show seconds
2024-07-29 23:35:50 +02:00
[tty-clock user manual](https://github.com/xorg62/tty-clock)