Commit message

pull/51/head
mintpic dev 9 months ago
parent f8ab4bb30c
commit 8df0327d97

@ -2,7 +2,7 @@
"readmeUrl": "https://github.com/itjeff/nullshift/README.md", "readmeUrl": "https://github.com/itjeff/nullshift/README.md",
"title": "Jeff's NullShift", "title": "Jeff's NullShift",
"name": "JeffAI", "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", "repo": "https://github.com/itjeff/nullshift",
"donate_urls": { "donate_urls": {
"cashapp": "$itjeff", "cashapp": "$itjeff",
@ -22,16 +22,16 @@
"non_terminal_url": "W", "non_terminal_url": "W",
"colors": { "colors": {
"light": { "light": {
"background": "#ffffff", "background": "#FFADDE",
"foreground": "#000000", "foreground": "#92EAEB",
"cursor": "#000000", "cursor": "#95F0C5",
"selection": "#c0c0c0" "selection": "#ACBEFC"
}, },
"dark": { "dark": {
"background": "#000000", "background": "#000000",
"foreground": "#00ff00", "foreground": "#95F0C5",
"cursor": "#00ff00", "cursor": "#FFADDE",
"selection": "#004400" "selection": "#ACBEFC"
} }
}, },
"commands": [ "commands": [

@ -18,7 +18,7 @@ export const help = async (args: string[]): Promise<string> => {
\n${c}\n \n${c}\n
[tab]: trigger completion. [tab]: trigger completion.
[ctrl+l]/clear: clear terminal.\n [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<string> => {
return `Hi, I am ${config.name}. return `Hi, I am ${config.name}.
Welcome to my website! Welcome to my website!
More about me: More about me:
'sumfetch' - short summary. 'dashboard' - short summary.
'resume' - my latest resume. 'resume' - my latest resume.
'readme' - my github readme.`; 'readme' - my github readme.`;
}; };
@ -135,23 +135,22 @@ export const emacs = async (args?: string[]): Promise<string> => {
export const sudo = async (args?: string[]): Promise<string> => { export const sudo = async (args?: string[]): Promise<string> => {
window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', '_blank'); // ...I'm sorry 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? `;
}; };
// Banne
// Banner
export const banner = (args?: string[]): string => { export const banner = (args?: string[]): string => {
return ` return `
_ _ _ _ _ _ ____ _ _ ___ _____ _____
| \ | | | | | | | | / ___|| | | |_ _| ___|_ _|
| \| | | | | | | | \___ \| |_| || || |_ | |
| |\ | |_| | |___| |___ ___) | _ || || _| | |
|_| \_|\___/|_____|_____|____/|_| |_|___|_| |_|
Type 'help' to see the list of available commands.
Type 'dashboard' to display a summary.
Type 'repo' or click <u><a class="text-light-blue dark:text-dark-blue underline" href="\${config.repo}" target="_blank">here</a></u> for the Github repository.
Type 'help' to see the list of available commands. `;
Type 'sumfetch' to display summary. };
Type 'repo' or click <u><a class="text-light-blue dark:text-dark-blue underline" href="${config.repo}" target="_blank">here</a></u> for the Github repository.
`;
};
Loading…
Cancel
Save