-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.vscode/* | ||
.vscode/ | ||
idleterm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# idleterm | ||
Idle terminal screen made for fun (c++) | ||
|
||
I made idleterm to have something similar to [unimatrix](https://github.com/will8211/unimatrix) but made in C++ and a lot simpler, because I wanted an idle terminal screen running on very low-end devices. It currently is only tested on Linux, so feel free to make a windows version and talk to me if you want it to be on the main repo. | ||
## Dependencies | ||
|
||
The libx11-dev headers and libxrandr-dev packages, as well as g++ and libg++ to compile the code. | ||
|
||
Ubuntu: | ||
```bash | ||
sudo apt install libx11-dev libxrandr-dev g++ libg++ | ||
``` | ||
Arch: if you use X11 and have Xrandr installed, the libs should be there. | ||
``` | ||
sudo pacman -Sy gcc xorg-server xorg-xrandr --needed | ||
``` | ||
## Installation | ||
|
||
On any linux distro, just git clone the repo and run the install script (uses sudo to install it on the right folder) | ||
|
||
```bash | ||
git clone https://github.com/augustopereiratx/idleterm | ||
cd idleterm | ||
./install.sh | ||
``` | ||
|
||
To run it, run `idleterm`. I recommend reading the help prompt by using the `-h` flag. | ||
## Screenshots | ||
|
||
![Program running in Kitty terminal](assets/1.png) | ||
![Program running in Kitty terminal again](assets/2.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
bash buildlinux.sh | ||
sudo mv idleterm /usr/bin/ | ||
echo "Installation done!" |