An open API service indexing awesome lists of open source software.

https://github.com/kurama622/startup

Terminal Dashboard
https://github.com/kurama622/startup

Last synced: 5 months ago
JSON representation

Terminal Dashboard

Awesome Lists containing this project

README

          




logo


A collection of human friendly terminal user interface.




LICENSE


Screenshot •
Installation •
Usage •
Configuration •
Thanks

### Screenshot

![](https://i-blog.csdnimg.cn/direct/796ebba2008749818f76ccd39ba17719.png)

![](https://i-blog.csdnimg.cn/direct/0c1e2e19b8c448f294b315d8ac140770.png)

#### history files preview
![](https://img-blog.csdnimg.cn/img_convert/539918ba6d91c4f18db7c72f55255f0e.png)

**Note**:

`find file` relies on `fzf`.

`file browser` relies on `ranger` / `lf` / ...

### Installation
```bash
git clone https://github.com/Kurama622/StartUp ~/.config/
cd ~/.config/StartUp
./install.sh
```

### Usage
```bash
. $HOME/.config/StartUp/StartUp.sh
```

Or write the following configuration into `~/.zshrc`:
```bash
alias sp='. $HOME/.config/StartUp/StartUp.sh'
```
#### Keymap

| keymap | Action |
|-----------------|----------------------------|
| `TAB` | select the next option |
| `Shift` + `TAB` | select the previous option |
| `Enter` | confirm the option |

You can also customize your shortcuts, such as:

```lua
select_next_key = ""
select_prev_key = ""
```

### Configuration
`config.lua`
```lua
style = "ghost"

keymap = {
["history_files"] = "",
["find_file"] = "",
["file_browser"] = "",
["open_dotfiles"] = "",
["tag_paths"] = "",
["exit"] = "",
["select_next"] = "",
["select_prev"] = ""
}

dotfiles_list = {
"~/.zshrc",
"~/.tmux.conf",
"~/.config/nvim/init.lua",
"~/.config/ranger/rc.conf",
"~/.config/zsh/module/aliases.zsh",
"~/.config/StartUp/src/config.hpp",
"~/.config/StartUp/config.lua",
"~/.config/StartUp/header/header.lua",
}

paths_list = {
"~/.config/StartUp",
"~/.config/StartUp/src",
"~/.config/StartUp/build",
"~/.config",
"~/.config/nvim",
"~/.config/ranger",
"~/.config/zsh/module",
"~/Desktop",
"~/svegeta"
}

-- The first option is selected by default
radiobox_selected = 0
oldfiles_selected = 0
dotfiles_selected = 0
paths_selected = 0

editor = "nvim"
file_browser_cmd = "ranger"
find_file_cmd = "nvim $(fzf)"
oldfiles_cmd = "nvim --headless -u NONE -c'echo v:oldfiles | qall!' 2>&1"

url = "https://github.com/Kurama622/StartUp"

```
`style` ( logo style ):
- `ghost`
- `melting`
- `fading`
- `hand_writing`
- `black_outline`

### Thanks
- [dashboard-nvim](https://github.com/glepnir/dashboard-nvim) - UI Reference
- [FTXUI](https://github.com/ArthurSonzogni/FTXUI) - TUI