diff --git a/LiveTerm b/LiveTerm deleted file mode 160000 index 1f2e543..0000000 --- a/LiveTerm +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1f2e543bdbfacaff0585a3f338d4fec215553250 diff --git a/config.json b/config.json index 1a4c762..854b0df 100644 --- a/config.json +++ b/config.json @@ -3,7 +3,7 @@ "title": "Jeff's NullShift", "name": "JeffAI", "ascii": " +---------------------------------------------------------------------------+\n | _ _ _ _ ___ _ ___ _ |\n |( ) ( ) (_ ) (_ ) ( _`\ ( ) _ /'___)( )_ |\n || `\| | _ _ | | | | | (_(_)| |__ (_)| (__ | ,_) _ _ ____ |\n || , ` |( ) ( ) | | | | `\\__ \\ | _ `\\| || ,__) | | (`\\/')( ) ( )(_ ,)|\n || |`\\ || (_) | | | | | ( )_) || | | || || | | |_ _ > < | (_) | /'/_ |\n |(_) (_)`\\___/'(___)(___)`\\____)(_) (_)(_)(_) `\\__)(_)(_\\/_)`\\__, |(____)|\n | ( )_| | |\n | `\\___/' |\n +---------------------------------------------------------------------------+\n\n ~ Welcome to Jeff's NullShift Terminal ~\n A hub for tech, crypto, and finance enthusiasts.\n Type 'help' for a list of commands.\n Discover, innovate, and connect!", - "repo": "https://github.com/itjeff/nullshift", + "repo": "https://github.com/itjeff/", "donate_urls": { "cashapp": "$itjeff", "ethereum": "0x0D60a455Da54750769400A32204A539703b2D89A", diff --git a/package-lock.json b/package-lock.json index 4c4643a..d1b904e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "liveterm", + "name": "nullshift", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "liveterm", + "name": "nullshift", "version": "0.1.0", "license": "MIT", "dependencies": { diff --git a/src/utils/bin/sumfetch.ts b/src/utils/bin/dashboard.ts similarity index 97% rename from src/utils/bin/sumfetch.ts rename to src/utils/bin/dashboard.ts index e55686e..307cb34 100644 --- a/src/utils/bin/sumfetch.ts +++ b/src/utils/bin/dashboard.ts @@ -3,7 +3,7 @@ import config from '../../../config.json'; const sumfetch = async (args: string[]): Promise => { if (config.ascii === 'cveinnt') { return ` - @@@@@@@@@@@@@  sumfetch: summary display + @@@@@@@@@@@@@  dashboard: dashboard summary display @@@@ @@@@ ----------- @@ @@  ABOUT @@ @@  ${config.name} @@ -23,7 +23,7 @@ const sumfetch = async (args: string[]): Promise => { `; } else { return ` - ▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄   sumfetch + ▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄   dashboard ▄▓▓▀ ▄▓▓▀▓▓▓▀▓▓▄ ▀▀▓▓▄  ----------- ▓▓▀ ▄▓▀  ▐▓▓ ▀▓▓  ▓▓▄   ABOUT ▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓   ${config.name} diff --git a/src/utils/bin/index.ts b/src/utils/bin/index.ts index 0d55ba1..e49ae02 100644 --- a/src/utils/bin/index.ts +++ b/src/utils/bin/index.ts @@ -1,3 +1,3 @@ export * from './commands'; export * from './api_commands'; -export { default as sumfetch } from './sumfetch'; +export { default as dashboard } from './dashboard';