Skip to content

Commit

Permalink
docs: added smashfetch to list of builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukinoko-kun committed Oct 2, 2024
1 parent d05b845 commit a523cdc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ There are some bugs on Windows because I don't use Windows. Feel free to open PR
- `exit` (exit shell session)
- `printf` (print formatted string to stdout)
- `time` (time command execution)
- `zu` (similar to [ajeetdsouza/zoxide](https://github.com/ajeetdsouza/zoxide), change directory based on history and frequency)
- `zu` (change directory based on history and frequency, similar to [ajeetdsouza/zoxide](https://github.com/ajeetdsouza/zoxide))
- `smashfetch` (show system information, similar to [dylanaraps/neofetch](https://github.com/dylanaraps/neofetch))

## Upcoming

Expand Down
1 change: 1 addition & 0 deletions internal/shell/parser/shell_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var InternalToolNames = [...]string{
"calc",
"cd",
"zu",
"smashfetch",
}

func (e *exe) internal(stdin io.Reader, stdout io.Writer, stderr io.Writer) (bool, error) {
Expand Down
1 change: 1 addition & 0 deletions internal/shell/parser/shell_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var InternalToolNames = [...]string{
"calc",
"cd",
"zu",
"smashfetch",
"env",
}

Expand Down

0 comments on commit a523cdc

Please sign in to comment.