diff --git a/config.json b/config.json index 82812b8..1a4c762 100644 --- a/config.json +++ b/config.json @@ -2,7 +2,7 @@ "readmeUrl": "https://github.com/itjeff/nullshift/README.md", "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!", + "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", "donate_urls": { "cashapp": "$itjeff", @@ -22,16 +22,16 @@ "non_terminal_url": "W", "colors": { "light": { - "background": "#ffffff", - "foreground": "#000000", - "cursor": "#000000", - "selection": "#c0c0c0" + "background": "#FFADDE", + "foreground": "#92EAEB", + "cursor": "#95F0C5", + "selection": "#ACBEFC" }, "dark": { "background": "#000000", - "foreground": "#00ff00", - "cursor": "#00ff00", - "selection": "#004400" + "foreground": "#95F0C5", + "cursor": "#FFADDE", + "selection": "#ACBEFC" } }, "commands": [ diff --git a/src/utils/bin/commands.ts b/src/utils/bin/commands.ts index 338c9f8..061a231 100644 --- a/src/utils/bin/commands.ts +++ b/src/utils/bin/commands.ts @@ -18,7 +18,7 @@ export const help = async (args: string[]): Promise => { \n${c}\n [tab]: trigger completion. [ctrl+l]/clear: clear terminal.\n -Type 'sumfetch' to display summary. +Type 'dashboard' to display summary. `; }; @@ -33,7 +33,7 @@ export const about = async (args: string[]): Promise => { return `Hi, I am ${config.name}. Welcome to my website! More about me: -'sumfetch' - short summary. +'dashboard' - short summary. 'resume' - my latest resume. 'readme' - my github readme.`; }; @@ -135,23 +135,22 @@ export const emacs = async (args?: string[]): Promise => { export const sudo = async (args?: string[]): Promise => { window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', '_blank'); // ...I'm sorry - return `Permission denied: with little power comes... no responsibility? `; + +return `Permission denied: with little power comes... no responsibility? `; }; - -// Banner +// Banne export const banner = (args?: string[]): string => { + return ` -█████ ███ ███████████ -░░███ ░░░ ░█░░░███░░░█ - ░███ ████ █████ █████ ██████ ░ ░███ ░ ██████ ████████ █████████████ - ░███ ░░███ ░░███ ░░███ ███░░███ ░███ ███░░███░░███░░███░░███░░███░░███ - ░███ ░███ ░███ ░███ ░███████ ░███ ░███████ ░███ ░░░ ░███ ░███ ░███ - ░███ █ ░███ ░░███ ███ ░███░░░ ░███ ░███░░░ ░███ ░███ ░███ ░███ - ███████████ █████ ░░█████ ░░██████ █████ ░░██████ █████ █████░███ █████ -░░░░░░░░░░░ ░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░░░ - -Type 'help' to see the list of available commands. -Type 'sumfetch' to display summary. -Type 'repo' or click here for the Github repository. -`; -}; + _ _ _ _ _ _ ____ _ _ ___ _____ _____ +| \ | | | | | | | | / ___|| | | |_ _| ___|_ _| +| \| | | | | | | | \___ \| |_| || || |_ | | +| |\ | |_| | |___| |___ ___) | _ || || _| | | +|_| \_|\___/|_____|_____|____/|_| |_|___|_| |_| + + Type 'help' to see the list of available commands. + Type 'dashboard' to display a summary. + Type 'repo' or click here for the Github repository. + `; + }; + \ No newline at end of file