├── .github ├── CONTRIBUTTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── materialshell.zsh ├── materialshell.zsh-theme └── shell-color-themes ├── README.md ├── ghostty ├── materialshell-dark ├── materialshell-light └── materialshell-oceanic ├── macOS ├── iterm │ ├── materialshell-dark.itermcolors │ └── materialshell-oceanic.itermcolors └── terminal │ ├── materialshell-dark.terminal │ └── materialshell-oceanic.terminal └── windows ├── cmder └── materialshell.xml └── terminal ├── dark.json └── oceanic.json /.github/CONTRIBUTTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/.github/CONTRIBUTTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/README.md -------------------------------------------------------------------------------- /materialshell.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/materialshell.zsh -------------------------------------------------------------------------------- /materialshell.zsh-theme: -------------------------------------------------------------------------------- 1 | materialshell.zsh -------------------------------------------------------------------------------- /shell-color-themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/README.md -------------------------------------------------------------------------------- /shell-color-themes/ghostty/materialshell-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/ghostty/materialshell-dark -------------------------------------------------------------------------------- /shell-color-themes/ghostty/materialshell-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/ghostty/materialshell-light -------------------------------------------------------------------------------- /shell-color-themes/ghostty/materialshell-oceanic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/ghostty/materialshell-oceanic -------------------------------------------------------------------------------- /shell-color-themes/macOS/iterm/materialshell-dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/macOS/iterm/materialshell-dark.itermcolors -------------------------------------------------------------------------------- /shell-color-themes/macOS/iterm/materialshell-oceanic.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/macOS/iterm/materialshell-oceanic.itermcolors -------------------------------------------------------------------------------- /shell-color-themes/macOS/terminal/materialshell-dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/macOS/terminal/materialshell-dark.terminal -------------------------------------------------------------------------------- /shell-color-themes/macOS/terminal/materialshell-oceanic.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/macOS/terminal/materialshell-oceanic.terminal -------------------------------------------------------------------------------- /shell-color-themes/windows/cmder/materialshell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/windows/cmder/materialshell.xml -------------------------------------------------------------------------------- /shell-color-themes/windows/terminal/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/windows/terminal/dark.json -------------------------------------------------------------------------------- /shell-color-themes/windows/terminal/oceanic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloscuesta/materialshell/HEAD/shell-color-themes/windows/terminal/oceanic.json --------------------------------------------------------------------------------