Skip to content

Commit

Permalink
fix: fixed video not showing in readme and updated example config file
Browse files Browse the repository at this point in the history
  • Loading branch information
caycun committed Sep 6, 2024
1 parent 6baa99b commit add7acb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Create a dashboard where you can see all output from different terminal commands


## Demo
![](https://media.discordapp.net/attachments/1055343147833626757/1269101410205827143/Showcase.gif?ex=66aed64a&is=66ad84ca&hm=9c2075c67728ac9a43e2b7a97a280c925452b4ca05613a44c7fc2441ff8acc25&=)
![](https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExdXloYnc1Z2hsbjk0aTdjbDk0bDhucG5rMHV1MjBncDZzNTF0eTc5OSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/G0RZoyKexV71ZnB50Y/giphy.gif)

## Keybinds

Expand All @@ -30,14 +30,14 @@ Create a .yaml file with the commands you want to use

```
- command: "ping google.com"
size: 40
direction: 1
size: 40
direction: 1
- command: "ping facebook.com"
size: 20
direction: 2
size: 20
direction: 2
- command: "ping youtube.com"
size: 10
direction: 2
size: 10
direction: 2
```

Currently, direction system is not implemented yet. Direction is whether the screen should be horizontal[1] or vertical[2]
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut collections: Vec<OutputData> = Vec::new();
let mut running = true;
while running {

let id = rx.recv().unwrap();
if collections.is_empty() {
collections.push(id.clone());
Expand Down

0 comments on commit add7acb

Please sign in to comment.