-
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.
restructure directories setup; obligatory bash script
- Loading branch information
Việt Trọng Dương
authored
Oct 13, 2024
1 parent
a3a046c
commit 7b11824
Showing
19 changed files
with
358 additions
and
135 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
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 @@ | ||
# THIS IS THE ASSETS FOLDER GOD DAMN IT | ||
|
||
This folder was cloned here when `cargo install` ran `build.rs`. Please don't touch this thing unless you know what you're doing! | ||
|
||
Thanks! Feel free to tinker with whatever is inside here, by the way. |
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,14 @@ | ||
/‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾/‾‾/‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\ | ||
‾‾‾‾‾/ /‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ ‾‾ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\ \ | ||
/ / /‾‾‾‾‾/ /‾‾‾‾‾‾‾/ /‾‾‾‾‾‾‾‾‾/ /‾‾/ /‾‾‾‾‾‾/ /‾‾‾‾\ \ \ | ||
/ / / /‾‾‾ / /‾/ / / /‾/ /‾/ / / / / /‾/ / / /\ \ \ \ | ||
/ / / ‾‾‾/ / / / / / / / / / / / / / / / / / ‾‾ \ \ \ | ||
/ / / /‾‾‾ / / \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \‾‾‾\ \ \ \ | ||
/ / / ‾‾‾/ / / \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ‾‾‾‾‾\ | ||
‾‾‾ ‾‾‾‾‾‾ ‾‾‾ ‾‾‾ ‾‾ ‾‾ ‾‾ ‾‾‾ ‾‾‾ ‾‾ ‾‾‾ ‾‾‾ ‾‾‾‾‾‾‾‾ | ||
/‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾/ /‾‾\ \‾‾‾‾‾\ \‾‾‾‾‾‾‾‾/ /\ \‾‾‾‾‾\ \‾‾‾‾‾‾\ | ||
/ /‾‾ / / /\ \ \ \‾\ \ \ \‾‾‾‾ / \ \ \‾\ \ \ \‾‾‾ | ||
/ /‾‾ /‾‾ /‾‾‾‾ /‾‾‾‾ / / / / / / /‾/ / / / / /\ \ \ \ \ \ \ ‾‾/ | ||
/ /‾‾ / / / / ‾ / / / / / / / / ‾‾ \ \ \/ / / /‾‾ | ||
/ / / /‾/ / / / / / / ‾‾‾/ / /‾‾‾‾\ \ \ / / ‾‾/ | ||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ ‾‾ ‾‾ ‾‾ ‾‾ ‾‾‾‾‾‾ ‾‾ ‾‾ ‾‾ ‾‾‾‾‾ |
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,9 @@ | ||
#! /usr/bin/bash | ||
|
||
assets_path=$HOME/.local/share/terminal-arcade/.assets | ||
if [ ! -d $assets_path ]; then | ||
mkdir $assets_path | ||
else | ||
rm -rf $assets_path | ||
fi | ||
cp -r ./assets/* $assets_path |
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,4 +1,4 @@ | ||
//! All components (screens & widgets) implmeneted in Terminal Arcade. | ||
//! All components (screens & widgets) implmeneted for the app. | ||
pub mod screens; | ||
pub mod widgets; |
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,7 @@ | ||
//! Banner showing the Terminal Arcade ASCII art logo. | ||
use lazy_static::lazy_static; | ||
|
||
lazy_static! { | ||
static ref BANNER: String = std::fs::read_to_string("path"); | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
//! All screens implmeneted in Terminal Arcade. | ||
//! All screens implmeneted for the app. | ||
pub mod home; |
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
Oops, something went wrong.