├── .gitignore ├── .vim └── coc-settings.json ├── alacritty └── alacritty.yml ├── neofetch └── config.conf ├── nvim ├── UltiSnips │ ├── all.snippets │ └── html.snippets ├── coc-settings.json ├── init.vim └── plug-config │ └── coc.vim ├── sketchybar ├── plugins │ ├── btc.py │ ├── btc.sh │ ├── cpu.sh │ ├── cpu_graph.sh │ ├── date_time.sh │ ├── dndIndicator.sh │ ├── eth.py │ ├── eth.sh │ ├── gitNotifications.sh │ ├── githubIndicator.sh │ ├── mailIndicator.sh │ ├── mic.sh │ ├── mic_click.sh │ ├── space.sh │ ├── spotifyIndicator.sh │ ├── topmem.sh │ ├── topproc.sh │ ├── window.sh │ └── window_title.sh └── sketchybarrc ├── sketchybar_old └── sketchybarrc ├── skhd └── skhdrc ├── spacebar └── spacebarrc └── yabai └── yabairc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/.vim/coc-settings.json -------------------------------------------------------------------------------- /alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/alacritty/alacritty.yml -------------------------------------------------------------------------------- /neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/neofetch/config.conf -------------------------------------------------------------------------------- /nvim/UltiSnips/all.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/nvim/UltiSnips/all.snippets -------------------------------------------------------------------------------- /nvim/UltiSnips/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/nvim/UltiSnips/html.snippets -------------------------------------------------------------------------------- /nvim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/nvim/coc-settings.json -------------------------------------------------------------------------------- /nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/nvim/init.vim -------------------------------------------------------------------------------- /nvim/plug-config/coc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/nvim/plug-config/coc.vim -------------------------------------------------------------------------------- /sketchybar/plugins/btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/btc.py -------------------------------------------------------------------------------- /sketchybar/plugins/btc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python3 ~/.config/sketchybar/plugins/btc.py 4 | -------------------------------------------------------------------------------- /sketchybar/plugins/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/cpu.sh -------------------------------------------------------------------------------- /sketchybar/plugins/cpu_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/cpu_graph.sh -------------------------------------------------------------------------------- /sketchybar/plugins/date_time.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sketchybar -m --set $NAME label="$(date '+%a %d %b %H:%M')" 4 | -------------------------------------------------------------------------------- /sketchybar/plugins/dndIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/dndIndicator.sh -------------------------------------------------------------------------------- /sketchybar/plugins/eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/eth.py -------------------------------------------------------------------------------- /sketchybar/plugins/eth.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python3 ~/.config/sketchybar/plugins/eth.py 4 | -------------------------------------------------------------------------------- /sketchybar/plugins/gitNotifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/gitNotifications.sh -------------------------------------------------------------------------------- /sketchybar/plugins/githubIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/githubIndicator.sh -------------------------------------------------------------------------------- /sketchybar/plugins/mailIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/mailIndicator.sh -------------------------------------------------------------------------------- /sketchybar/plugins/mic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/mic.sh -------------------------------------------------------------------------------- /sketchybar/plugins/mic_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/mic_click.sh -------------------------------------------------------------------------------- /sketchybar/plugins/space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/space.sh -------------------------------------------------------------------------------- /sketchybar/plugins/spotifyIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/spotifyIndicator.sh -------------------------------------------------------------------------------- /sketchybar/plugins/topmem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/topmem.sh -------------------------------------------------------------------------------- /sketchybar/plugins/topproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/topproc.sh -------------------------------------------------------------------------------- /sketchybar/plugins/window.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/window.sh -------------------------------------------------------------------------------- /sketchybar/plugins/window_title.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/plugins/window_title.sh -------------------------------------------------------------------------------- /sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /sketchybar_old/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/sketchybar_old/sketchybarrc -------------------------------------------------------------------------------- /skhd/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/skhd/skhdrc -------------------------------------------------------------------------------- /spacebar/spacebarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/spacebar/spacebarrc -------------------------------------------------------------------------------- /yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssate/dotfiles/HEAD/yabai/yabairc --------------------------------------------------------------------------------