dotfiles-tui 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.env.example +4 -0
- data/.gitattributes +1 -0
- data/.github/workflows/publish-gem.yml +36 -0
- data/.gitignore +316 -0
- data/.shellcheckrc +1 -0
- data/.stow-local-ignore +23 -0
- data/.vscode/settings.json +2 -0
- data/Configs/aerospace/.config/aerospace/aerospace.toml +265 -0
- data/Configs/alacritty/.config/alacritty/alacritty.toml +31 -0
- data/Configs/conda/.condarc +1 -0
- data/Configs/continue/.continue/.continueignore +0 -0
- data/Configs/continue/.continue/.continuerc.json +3 -0
- data/Configs/continue/.continue/config.json +48 -0
- data/Configs/docker/.docker/completion/completion.zsh +3 -0
- data/Configs/editorconfig/.editorconfig +16 -0
- data/Configs/fzf/.fzf/completion/completion.zsh +8 -0
- data/Configs/git/.config/gitconfig/core +83 -0
- data/Configs/git/.config/gitconfig/home +20 -0
- data/Configs/git/.config/gitconfig/template.txt +7 -0
- data/Configs/git/.config/gitconfig/work +23 -0
- data/Configs/git/.gitconfig +25 -0
- data/Configs/gpg/.gnupg/.#lk0x000000015060b4e0.macBook.pro.24088 +2 -0
- data/Configs/gpg/.gnupg/gpg-agent.conf +3 -0
- data/Configs/gpg/.gnupg/openpgp-revocs.d/DE999E2ACEAE3E8EAD660459688CB4D444FB1024.rev +28 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/0FF407C984AC03CCC60D924C5B315977DF45D5D0.key +7 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/2B711D7C4A8BE25322C9966B73E6842F7E64CD38.key +7 -0
- data/Configs/gpg/.gnupg/pubring.kbx +0 -0
- data/Configs/gpg/.gnupg/trustdb.gpg +0 -0
- data/Configs/kitty/.config/kitty/current-theme.conf +80 -0
- data/Configs/kitty/.config/kitty/kitty.conf +93 -0
- data/Configs/nvim/.config/nvim/.stylua.toml +6 -0
- data/Configs/nvim/.config/nvim/README.md +9 -0
- data/Configs/nvim/.config/nvim/init.lua +37 -0
- data/Configs/nvim/.config/nvim/lazy-lock.json +29 -0
- data/Configs/nvim/.config/nvim/lua/chadrc.lua +17 -0
- data/Configs/nvim/.config/nvim/lua/configs/conform.lua +15 -0
- data/Configs/nvim/.config/nvim/lua/configs/lazy.lua +47 -0
- data/Configs/nvim/.config/nvim/lua/configs/lspconfig.lua +24 -0
- data/Configs/nvim/.config/nvim/lua/configs/null_ls.lua +27 -0
- data/Configs/nvim/.config/nvim/lua/mappings.lua +10 -0
- data/Configs/nvim/.config/nvim/lua/options.lua +6 -0
- data/Configs/nvim/.config/nvim/lua/plugins/init.lua +25 -0
- data/Configs/oh-my-posh/.config/oh-my-posh/theme/config.json +71 -0
- data/Configs/pip/.config/pip/pip.conf +3 -0
- data/Configs/python/.pythonrc +25 -0
- data/Configs/starship/.config/starship/starship.toml +134 -0
- data/Configs/starship/.config/starship/themes/frappe.toml +27 -0
- data/Configs/starship/.config/starship/themes/latte.toml +27 -0
- data/Configs/starship/.config/starship/themes/macchiato.toml +27 -0
- data/Configs/starship/.config/starship/themes/mocha.toml +27 -0
- data/Configs/tmux/.tmux.conf +21 -0
- data/Configs/wezterm/.config/wezterm/core/colors.lua +10 -0
- data/Configs/wezterm/.config/wezterm/core/font.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/helper.lua +22 -0
- data/Configs/wezterm/.config/wezterm/core/init.lua +20 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/init.lua +16 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/macos.lua +106 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/windows.lua +99 -0
- data/Configs/wezterm/.config/wezterm/core/launch.lua +41 -0
- data/Configs/wezterm/.config/wezterm/core/maximized.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/mousebindings.lua +23 -0
- data/Configs/wezterm/.config/wezterm/core/tab_title.lua +26 -0
- data/Configs/wezterm/.config/wezterm/core/window.lua +8 -0
- data/Configs/wezterm/.config/wezterm/wezterm.lua +83 -0
- data/Configs/zellij/.config/zellij/config.kdl +410 -0
- data/Configs/zellij/.config/zellij/layouts/default.kdl +159 -0
- data/Configs/zellij/.config/zellij/plugins/room.wasm +0 -0
- data/Configs/zellij/.config/zellij/plugins/zjstatus.wasm +0 -0
- data/Configs/zsh/.hushlogin +0 -0
- data/Configs/zsh/.localrc +42 -0
- data/Configs/zsh/.profile +3 -0
- data/Configs/zsh/.shellcheckrc +1 -0
- data/Configs/zsh/.zprofile +3 -0
- data/Configs/zsh/.zsh/autoload/backup_restore +84 -0
- data/Configs/zsh/.zsh/autoload/cat +8 -0
- data/Configs/zsh/.zsh/autoload/change_wallpaper +1 -0
- data/Configs/zsh/.zsh/autoload/clean_dstore +6 -0
- data/Configs/zsh/.zsh/autoload/clean_pycache +6 -0
- data/Configs/zsh/.zsh/autoload/convert_mkv_to_mp4 +14 -0
- data/Configs/zsh/.zsh/autoload/create_macos_installer +26 -0
- data/Configs/zsh/.zsh/autoload/download +71 -0
- data/Configs/zsh/.zsh/autoload/fail +2 -0
- data/Configs/zsh/.zsh/autoload/flush_dns +6 -0
- data/Configs/zsh/.zsh/autoload/info +1 -0
- data/Configs/zsh/.zsh/autoload/ls +8 -0
- data/Configs/zsh/.zsh/autoload/reset_beyond_compare +15 -0
- data/Configs/zsh/.zsh/autoload/reset_final_cut_pro +5 -0
- data/Configs/zsh/.zsh/autoload/reset_launch_pad +3 -0
- data/Configs/zsh/.zsh/autoload/reset_open_list +3 -0
- data/Configs/zsh/.zsh/autoload/speedup_terminal +6 -0
- data/Configs/zsh/.zsh/autoload/start_aria2_server +1 -0
- data/Configs/zsh/.zsh/autoload/success +1 -0
- data/Configs/zsh/.zsh/autoload/update_system +19 -0
- data/Configs/zsh/.zsh/autoload/user +1 -0
- data/Configs/zsh/.zsh/autoload/vim +9 -0
- data/Configs/zsh/.zsh/autoload/warn +1 -0
- data/Configs/zsh/.zsh/completion/aliases.zsh +3 -0
- data/Configs/zsh/.zsh/completion/completion.zsh +33 -0
- data/Configs/zsh/.zsh/completion/config.zsh +118 -0
- data/Configs/zsh/.zsh/completion/exports.zsh +108 -0
- data/Configs/zsh/.zsh/completion/fpath.zsh +8 -0
- data/Configs/zsh/.zsh_history +283 -0
- data/Configs/zsh/.zshenv +2 -0
- data/Configs/zsh/.zshrc +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +87 -0
- data/Hooks/adguard/pre.rb +7 -0
- data/Hooks/aerospace/pre.rb +8 -0
- data/Hooks/aide/post.rb +7 -0
- data/Hooks/aide/pre.rb +7 -0
- data/Hooks/alacritty/pre.rb +7 -0
- data/Hooks/alfred/pre.rb +7 -0
- data/Hooks/atuin/post.rb +27 -0
- data/Hooks/atuin/pre.rb +7 -0
- data/Hooks/bartender/pre.rb +7 -0
- data/Hooks/bun/pre.rb +7 -0
- data/Hooks/carapace/pre.rb +7 -0
- data/Hooks/cargo/pre.rb +7 -0
- data/Hooks/choosy/pre.rb +7 -0
- data/Hooks/controld/pre.rb +7 -0
- data/Hooks/core/common.rb +36 -0
- data/Hooks/core/final.rb +23 -0
- data/Hooks/core/lib/configurator.rb +593 -0
- data/Hooks/core/lib/display.rb +120 -0
- data/Hooks/core/lib/hook_config.rb +96 -0
- data/Hooks/core/lib/hook_context.rb +124 -0
- data/Hooks/core/lib/hooks.rb +45 -0
- data/Hooks/core/lib/logger.rb +23 -0
- data/Hooks/core/lib/menu.rb +70 -0
- data/Hooks/core/lib/spinner.rb +50 -0
- data/Hooks/core/lib/system.rb +78 -0
- data/Hooks/core/lib/tweaks.rb +59 -0
- data/Hooks/core/library.rb +3 -0
- data/Hooks/core/pre.rb +17 -0
- data/Hooks/ctrld/pre.rb +7 -0
- data/Hooks/deskpad/pre.rb +7 -0
- data/Hooks/fonts/pre.rb +60 -0
- data/Hooks/ghostty/pre.rb +10 -0
- data/Hooks/git/post.rb +20 -0
- data/Hooks/git/pre.rb +7 -0
- data/Hooks/gpg/post.rb +16 -0
- data/Hooks/gpg/pre.rb +7 -0
- data/Hooks/ice-hidemenubar/pre.rb +7 -0
- data/Hooks/iterm/IC Green PPL.itermcolors +344 -0
- data/Hooks/iterm/chalkboard.webp +0 -0
- data/Hooks/iterm/com.googlecode.iterm2.plist +2371 -0
- data/Hooks/iterm/post.rb +7 -0
- data/Hooks/iterm/pre.rb +7 -0
- data/Hooks/jujutsu/post.rb +13 -0
- data/Hooks/jujutsu/pre.rb +7 -0
- data/Hooks/keka/pre.rb +7 -0
- data/Hooks/kitty/pre.rb +7 -0
- data/Hooks/lazyvim/pre.rb +7 -0
- data/Hooks/lima/pre.rb +7 -0
- data/Hooks/little-snitch/pre.rb +7 -0
- data/Hooks/microsoft-edge/pre.rb +7 -0
- data/Hooks/mos/pre.rb +7 -0
- data/Hooks/nvchad/pre.rb +7 -0
- data/Hooks/oh-my-posh/config.json +58 -0
- data/Hooks/oh-my-posh/post.rb +7 -0
- data/Hooks/oh-my-posh/pre.rb +7 -0
- data/Hooks/pearcleaner/pre.rb +7 -0
- data/Hooks/pycharm/pre.rb +7 -0
- data/Hooks/raindropio/pre.rb +7 -0
- data/Hooks/rectangle/RectangleConfig.json +258 -0
- data/Hooks/rectangle/com.knollsoft.Rectangle.plist +0 -0
- data/Hooks/rectangle/post.rb +22 -0
- data/Hooks/rectangle/pre.rb +7 -0
- data/Hooks/slack/pre.rb +7 -0
- data/Hooks/soundsource/pre.rb +7 -0
- data/Hooks/ssh/post.rb +8 -0
- data/Hooks/starship/pre.rb +7 -0
- data/Hooks/sublime_text/post.rb +25 -0
- data/Hooks/sublime_text/pre.rb +7 -0
- data/Hooks/swiftformat-for-xcode/pre.rb +7 -0
- data/Hooks/syncthing/pre.rb +7 -0
- data/Hooks/synology/pre.rb +7 -0
- data/Hooks/tailscale/pre.rb +7 -0
- data/Hooks/tmux/post.rb +7 -0
- data/Hooks/tmux/pre.rb +7 -0
- data/Hooks/topnotch/pre.rb +7 -0
- data/Hooks/transmission/pre.rb +7 -0
- data/Hooks/vscode/extensions.txt +16 -0
- data/Hooks/vscode/keybindings.json +26 -0
- data/Hooks/vscode/post.rb +29 -0
- data/Hooks/vscode/pre.rb +9 -0
- data/Hooks/vscode/settings.json +139 -0
- data/Hooks/vscode/style.css +29 -0
- data/Hooks/wezterm/pre.rb +7 -0
- data/Hooks/wins/pre.rb +7 -0
- data/Hooks/zed/pre.rb +7 -0
- data/Hooks/zellij/post.rb +7 -0
- data/Hooks/zellij/pre.rb +7 -0
- data/Hooks/zoxide/pre.rb +7 -0
- data/Hooks/zsh/pre.rb +19 -0
- data/LICENSE +21 -0
- data/README.md +100 -0
- data/bin/dotfiles-tui +6 -0
- data/bootstrap.rb +186 -0
- data/dotfiles-tui.gemspec +47 -0
- data/lib/dotfiles_tui/version.rb +5 -0
- data/lib/dotfiles_tui.rb +15 -0
- metadata +275 -0
data/lib/dotfiles_tui.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'dotfiles_tui/version'
|
|
4
|
+
|
|
5
|
+
# Main module for DotfilesTui gem
|
|
6
|
+
module DotfilesTui
|
|
7
|
+
# Entry point for the CLI
|
|
8
|
+
def self.run
|
|
9
|
+
# Load the bootstrap script
|
|
10
|
+
require_relative '../bootstrap'
|
|
11
|
+
|
|
12
|
+
# Run the CLI
|
|
13
|
+
Bootstrap::CLI.new.run
|
|
14
|
+
end
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: dotfiles-tui
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.5
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Narender
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: childprocess
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '4.1'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '4.1'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rake
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '13.0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '13.0'
|
|
40
|
+
description: Interactive terminal UI for managing dotfiles, installing packages via
|
|
41
|
+
Homebrew, and linking configurations with GNU Stow
|
|
42
|
+
email:
|
|
43
|
+
- narender@slrsoft.com
|
|
44
|
+
executables:
|
|
45
|
+
- dotfiles-tui
|
|
46
|
+
extensions: []
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- ".env.example"
|
|
50
|
+
- ".gitattributes"
|
|
51
|
+
- ".github/workflows/publish-gem.yml"
|
|
52
|
+
- ".gitignore"
|
|
53
|
+
- ".shellcheckrc"
|
|
54
|
+
- ".stow-local-ignore"
|
|
55
|
+
- ".vscode/settings.json"
|
|
56
|
+
- Configs/aerospace/.config/aerospace/aerospace.toml
|
|
57
|
+
- Configs/alacritty/.config/alacritty/alacritty.toml
|
|
58
|
+
- Configs/conda/.condarc
|
|
59
|
+
- Configs/continue/.continue/.continueignore
|
|
60
|
+
- Configs/continue/.continue/.continuerc.json
|
|
61
|
+
- Configs/continue/.continue/config.json
|
|
62
|
+
- Configs/docker/.docker/completion/completion.zsh
|
|
63
|
+
- Configs/editorconfig/.editorconfig
|
|
64
|
+
- Configs/fzf/.fzf/completion/completion.zsh
|
|
65
|
+
- Configs/git/.config/gitconfig/core
|
|
66
|
+
- Configs/git/.config/gitconfig/home
|
|
67
|
+
- Configs/git/.config/gitconfig/template.txt
|
|
68
|
+
- Configs/git/.config/gitconfig/work
|
|
69
|
+
- Configs/git/.gitconfig
|
|
70
|
+
- Configs/gpg/.gnupg/.#lk0x000000015060b4e0.macBook.pro.24088
|
|
71
|
+
- Configs/gpg/.gnupg/gpg-agent.conf
|
|
72
|
+
- Configs/gpg/.gnupg/openpgp-revocs.d/DE999E2ACEAE3E8EAD660459688CB4D444FB1024.rev
|
|
73
|
+
- Configs/gpg/.gnupg/private-keys-v1.d/0FF407C984AC03CCC60D924C5B315977DF45D5D0.key
|
|
74
|
+
- Configs/gpg/.gnupg/private-keys-v1.d/2B711D7C4A8BE25322C9966B73E6842F7E64CD38.key
|
|
75
|
+
- Configs/gpg/.gnupg/pubring.kbx
|
|
76
|
+
- Configs/gpg/.gnupg/trustdb.gpg
|
|
77
|
+
- Configs/kitty/.config/kitty/current-theme.conf
|
|
78
|
+
- Configs/kitty/.config/kitty/kitty.conf
|
|
79
|
+
- Configs/nvim/.config/nvim/.stylua.toml
|
|
80
|
+
- Configs/nvim/.config/nvim/README.md
|
|
81
|
+
- Configs/nvim/.config/nvim/init.lua
|
|
82
|
+
- Configs/nvim/.config/nvim/lazy-lock.json
|
|
83
|
+
- Configs/nvim/.config/nvim/lua/chadrc.lua
|
|
84
|
+
- Configs/nvim/.config/nvim/lua/configs/conform.lua
|
|
85
|
+
- Configs/nvim/.config/nvim/lua/configs/lazy.lua
|
|
86
|
+
- Configs/nvim/.config/nvim/lua/configs/lspconfig.lua
|
|
87
|
+
- Configs/nvim/.config/nvim/lua/configs/null_ls.lua
|
|
88
|
+
- Configs/nvim/.config/nvim/lua/mappings.lua
|
|
89
|
+
- Configs/nvim/.config/nvim/lua/options.lua
|
|
90
|
+
- Configs/nvim/.config/nvim/lua/plugins/init.lua
|
|
91
|
+
- Configs/oh-my-posh/.config/oh-my-posh/theme/config.json
|
|
92
|
+
- Configs/pip/.config/pip/pip.conf
|
|
93
|
+
- Configs/python/.pythonrc
|
|
94
|
+
- Configs/starship/.config/starship/starship.toml
|
|
95
|
+
- Configs/starship/.config/starship/themes/frappe.toml
|
|
96
|
+
- Configs/starship/.config/starship/themes/latte.toml
|
|
97
|
+
- Configs/starship/.config/starship/themes/macchiato.toml
|
|
98
|
+
- Configs/starship/.config/starship/themes/mocha.toml
|
|
99
|
+
- Configs/tmux/.tmux.conf
|
|
100
|
+
- Configs/wezterm/.config/wezterm/core/colors.lua
|
|
101
|
+
- Configs/wezterm/.config/wezterm/core/font.lua
|
|
102
|
+
- Configs/wezterm/.config/wezterm/core/helper.lua
|
|
103
|
+
- Configs/wezterm/.config/wezterm/core/init.lua
|
|
104
|
+
- Configs/wezterm/.config/wezterm/core/keybindings/init.lua
|
|
105
|
+
- Configs/wezterm/.config/wezterm/core/keybindings/macos.lua
|
|
106
|
+
- Configs/wezterm/.config/wezterm/core/keybindings/windows.lua
|
|
107
|
+
- Configs/wezterm/.config/wezterm/core/launch.lua
|
|
108
|
+
- Configs/wezterm/.config/wezterm/core/maximized.lua
|
|
109
|
+
- Configs/wezterm/.config/wezterm/core/mousebindings.lua
|
|
110
|
+
- Configs/wezterm/.config/wezterm/core/tab_title.lua
|
|
111
|
+
- Configs/wezterm/.config/wezterm/core/window.lua
|
|
112
|
+
- Configs/wezterm/.config/wezterm/wezterm.lua
|
|
113
|
+
- Configs/zellij/.config/zellij/config.kdl
|
|
114
|
+
- Configs/zellij/.config/zellij/layouts/default.kdl
|
|
115
|
+
- Configs/zellij/.config/zellij/plugins/room.wasm
|
|
116
|
+
- Configs/zellij/.config/zellij/plugins/zjstatus.wasm
|
|
117
|
+
- Configs/zsh/.hushlogin
|
|
118
|
+
- Configs/zsh/.localrc
|
|
119
|
+
- Configs/zsh/.profile
|
|
120
|
+
- Configs/zsh/.shellcheckrc
|
|
121
|
+
- Configs/zsh/.zprofile
|
|
122
|
+
- Configs/zsh/.zsh/autoload/backup_restore
|
|
123
|
+
- Configs/zsh/.zsh/autoload/cat
|
|
124
|
+
- Configs/zsh/.zsh/autoload/change_wallpaper
|
|
125
|
+
- Configs/zsh/.zsh/autoload/clean_dstore
|
|
126
|
+
- Configs/zsh/.zsh/autoload/clean_pycache
|
|
127
|
+
- Configs/zsh/.zsh/autoload/convert_mkv_to_mp4
|
|
128
|
+
- Configs/zsh/.zsh/autoload/create_macos_installer
|
|
129
|
+
- Configs/zsh/.zsh/autoload/download
|
|
130
|
+
- Configs/zsh/.zsh/autoload/fail
|
|
131
|
+
- Configs/zsh/.zsh/autoload/flush_dns
|
|
132
|
+
- Configs/zsh/.zsh/autoload/info
|
|
133
|
+
- Configs/zsh/.zsh/autoload/ls
|
|
134
|
+
- Configs/zsh/.zsh/autoload/reset_beyond_compare
|
|
135
|
+
- Configs/zsh/.zsh/autoload/reset_final_cut_pro
|
|
136
|
+
- Configs/zsh/.zsh/autoload/reset_launch_pad
|
|
137
|
+
- Configs/zsh/.zsh/autoload/reset_open_list
|
|
138
|
+
- Configs/zsh/.zsh/autoload/speedup_terminal
|
|
139
|
+
- Configs/zsh/.zsh/autoload/start_aria2_server
|
|
140
|
+
- Configs/zsh/.zsh/autoload/success
|
|
141
|
+
- Configs/zsh/.zsh/autoload/update_system
|
|
142
|
+
- Configs/zsh/.zsh/autoload/user
|
|
143
|
+
- Configs/zsh/.zsh/autoload/vim
|
|
144
|
+
- Configs/zsh/.zsh/autoload/warn
|
|
145
|
+
- Configs/zsh/.zsh/completion/aliases.zsh
|
|
146
|
+
- Configs/zsh/.zsh/completion/completion.zsh
|
|
147
|
+
- Configs/zsh/.zsh/completion/config.zsh
|
|
148
|
+
- Configs/zsh/.zsh/completion/exports.zsh
|
|
149
|
+
- Configs/zsh/.zsh/completion/fpath.zsh
|
|
150
|
+
- Configs/zsh/.zsh_history
|
|
151
|
+
- Configs/zsh/.zshenv
|
|
152
|
+
- Configs/zsh/.zshrc
|
|
153
|
+
- Gemfile
|
|
154
|
+
- Gemfile.lock
|
|
155
|
+
- Hooks/adguard/pre.rb
|
|
156
|
+
- Hooks/aerospace/pre.rb
|
|
157
|
+
- Hooks/aide/post.rb
|
|
158
|
+
- Hooks/aide/pre.rb
|
|
159
|
+
- Hooks/alacritty/pre.rb
|
|
160
|
+
- Hooks/alfred/pre.rb
|
|
161
|
+
- Hooks/atuin/post.rb
|
|
162
|
+
- Hooks/atuin/pre.rb
|
|
163
|
+
- Hooks/bartender/pre.rb
|
|
164
|
+
- Hooks/bun/pre.rb
|
|
165
|
+
- Hooks/carapace/pre.rb
|
|
166
|
+
- Hooks/cargo/pre.rb
|
|
167
|
+
- Hooks/choosy/pre.rb
|
|
168
|
+
- Hooks/controld/pre.rb
|
|
169
|
+
- Hooks/core/common.rb
|
|
170
|
+
- Hooks/core/final.rb
|
|
171
|
+
- Hooks/core/lib/configurator.rb
|
|
172
|
+
- Hooks/core/lib/display.rb
|
|
173
|
+
- Hooks/core/lib/hook_config.rb
|
|
174
|
+
- Hooks/core/lib/hook_context.rb
|
|
175
|
+
- Hooks/core/lib/hooks.rb
|
|
176
|
+
- Hooks/core/lib/logger.rb
|
|
177
|
+
- Hooks/core/lib/menu.rb
|
|
178
|
+
- Hooks/core/lib/spinner.rb
|
|
179
|
+
- Hooks/core/lib/system.rb
|
|
180
|
+
- Hooks/core/lib/tweaks.rb
|
|
181
|
+
- Hooks/core/library.rb
|
|
182
|
+
- Hooks/core/pre.rb
|
|
183
|
+
- Hooks/ctrld/pre.rb
|
|
184
|
+
- Hooks/deskpad/pre.rb
|
|
185
|
+
- Hooks/fonts/pre.rb
|
|
186
|
+
- Hooks/ghostty/pre.rb
|
|
187
|
+
- Hooks/git/post.rb
|
|
188
|
+
- Hooks/git/pre.rb
|
|
189
|
+
- Hooks/gpg/post.rb
|
|
190
|
+
- Hooks/gpg/pre.rb
|
|
191
|
+
- Hooks/ice-hidemenubar/pre.rb
|
|
192
|
+
- Hooks/iterm/IC Green PPL.itermcolors
|
|
193
|
+
- Hooks/iterm/chalkboard.webp
|
|
194
|
+
- Hooks/iterm/com.googlecode.iterm2.plist
|
|
195
|
+
- Hooks/iterm/post.rb
|
|
196
|
+
- Hooks/iterm/pre.rb
|
|
197
|
+
- Hooks/jujutsu/post.rb
|
|
198
|
+
- Hooks/jujutsu/pre.rb
|
|
199
|
+
- Hooks/keka/pre.rb
|
|
200
|
+
- Hooks/kitty/pre.rb
|
|
201
|
+
- Hooks/lazyvim/pre.rb
|
|
202
|
+
- Hooks/lima/pre.rb
|
|
203
|
+
- Hooks/little-snitch/pre.rb
|
|
204
|
+
- Hooks/microsoft-edge/pre.rb
|
|
205
|
+
- Hooks/mos/pre.rb
|
|
206
|
+
- Hooks/nvchad/pre.rb
|
|
207
|
+
- Hooks/oh-my-posh/config.json
|
|
208
|
+
- Hooks/oh-my-posh/post.rb
|
|
209
|
+
- Hooks/oh-my-posh/pre.rb
|
|
210
|
+
- Hooks/pearcleaner/pre.rb
|
|
211
|
+
- Hooks/pycharm/pre.rb
|
|
212
|
+
- Hooks/raindropio/pre.rb
|
|
213
|
+
- Hooks/rectangle/RectangleConfig.json
|
|
214
|
+
- Hooks/rectangle/com.knollsoft.Rectangle.plist
|
|
215
|
+
- Hooks/rectangle/post.rb
|
|
216
|
+
- Hooks/rectangle/pre.rb
|
|
217
|
+
- Hooks/slack/pre.rb
|
|
218
|
+
- Hooks/soundsource/pre.rb
|
|
219
|
+
- Hooks/ssh/post.rb
|
|
220
|
+
- Hooks/starship/pre.rb
|
|
221
|
+
- Hooks/sublime_text/post.rb
|
|
222
|
+
- Hooks/sublime_text/pre.rb
|
|
223
|
+
- Hooks/swiftformat-for-xcode/pre.rb
|
|
224
|
+
- Hooks/syncthing/pre.rb
|
|
225
|
+
- Hooks/synology/pre.rb
|
|
226
|
+
- Hooks/tailscale/pre.rb
|
|
227
|
+
- Hooks/tmux/post.rb
|
|
228
|
+
- Hooks/tmux/pre.rb
|
|
229
|
+
- Hooks/topnotch/pre.rb
|
|
230
|
+
- Hooks/transmission/pre.rb
|
|
231
|
+
- Hooks/vscode/extensions.txt
|
|
232
|
+
- Hooks/vscode/keybindings.json
|
|
233
|
+
- Hooks/vscode/post.rb
|
|
234
|
+
- Hooks/vscode/pre.rb
|
|
235
|
+
- Hooks/vscode/settings.json
|
|
236
|
+
- Hooks/vscode/style.css
|
|
237
|
+
- Hooks/wezterm/pre.rb
|
|
238
|
+
- Hooks/wins/pre.rb
|
|
239
|
+
- Hooks/zed/pre.rb
|
|
240
|
+
- Hooks/zellij/post.rb
|
|
241
|
+
- Hooks/zellij/pre.rb
|
|
242
|
+
- Hooks/zoxide/pre.rb
|
|
243
|
+
- Hooks/zsh/pre.rb
|
|
244
|
+
- LICENSE
|
|
245
|
+
- README.md
|
|
246
|
+
- bin/dotfiles-tui
|
|
247
|
+
- bootstrap.rb
|
|
248
|
+
- dotfiles-tui.gemspec
|
|
249
|
+
- lib/dotfiles_tui.rb
|
|
250
|
+
- lib/dotfiles_tui/version.rb
|
|
251
|
+
homepage: https://github.com/mr-narender/dotfiles-tui
|
|
252
|
+
licenses:
|
|
253
|
+
- MIT
|
|
254
|
+
metadata:
|
|
255
|
+
homepage_uri: https://github.com/mr-narender/dotfiles-tui
|
|
256
|
+
source_code_uri: https://github.com/mr-narender/dotfiles-tui
|
|
257
|
+
changelog_uri: https://github.com/mr-narender/dotfiles-tui/blob/main/CHANGELOG.md
|
|
258
|
+
rdoc_options: []
|
|
259
|
+
require_paths:
|
|
260
|
+
- lib
|
|
261
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
262
|
+
requirements:
|
|
263
|
+
- - ">="
|
|
264
|
+
- !ruby/object:Gem::Version
|
|
265
|
+
version: 2.6.0
|
|
266
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
267
|
+
requirements:
|
|
268
|
+
- - ">="
|
|
269
|
+
- !ruby/object:Gem::Version
|
|
270
|
+
version: '0'
|
|
271
|
+
requirements: []
|
|
272
|
+
rubygems_version: 3.7.2
|
|
273
|
+
specification_version: 4
|
|
274
|
+
summary: A TUI-based dotfiles bootstrap and management tool
|
|
275
|
+
test_files: []
|