StubbornVegeta / StartUp

Terminal Dashboard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


logo

A collection of human friendly terminal user interface.

LICENSE

Screenshot • Installation • Usage • Configuration • Thanks

Screenshot

history files preview

Note:

find file relies on fzf.

file browser relies on ranger / lf / ...

Installation

git clone https://github.com/StubbornVegeta/StartUp ~/.config/
cd ~/.config/StartUp
./install.sh

Usage

. $HOME/.config/StartUp/StartUp.sh

Or write the following configuration into ~/.zshrc:

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:

select_next_key   = "<C-n>"
select_prev_key   = "<C-p>"

Configuration

config.lua

style = "ghost"

keymap = {
  ["history_files"] = "<C-h>",
  ["find_file"]     = "<C-f>",
  ["file_browser"]  = "<C-b>",
  ["open_dotfiles"] = "<C-d>",
  ["tag_paths"]     = "<C-t>",
  ["exit"]          = "<Esc>",
  ["select_next"]   = "<C-n>",
  ["select_prev"]   = "<C-p>"
}

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/StubbornVegeta/StartUp"

style ( logo style ):

  • ghost
  • melting
  • fading
  • hand_writing
  • black_outline

Thanks

About

Terminal Dashboard

License:GNU General Public License v3.0


Languages

Language:C++ 75.7%Language:Lua 20.8%Language:CMake 2.7%Language:Shell 0.7%