├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── config.yml └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── bin ├── $ ├── dot ├── e ├── git-dot ├── quicknavi ├── startup-cmd └── v ├── config.yaml ├── docs ├── cheatsheets.md ├── navigators.md └── package-manager.md ├── editors ├── intellij │ └── ideavim.rc ├── spacevim │ └── spacevim.rc └── vscode │ ├── keybindings.json │ ├── settings.json │ └── tasks.json ├── git ├── agignore ├── config ├── gitui_config.ron ├── hooks │ ├── pre-commit │ └── pre-push └── ignore ├── links ├── android.csv ├── linux.csv ├── osx.csv ├── unix.csv ├── work.csv └── wsl.csv ├── navi ├── cheats │ ├── android.cheat │ ├── bazel.cheat │ ├── brew.cheat │ ├── clipboard.cheat │ ├── docker.cheat │ ├── editor.cheat │ ├── filesystem.cheat │ ├── git.cheat │ ├── image.cheat │ ├── jvm.cheat │ ├── kitty.cheat │ ├── network.cheat │ ├── osx.cheat │ ├── process.cheat │ ├── shell.cheat │ └── tmp.cheat └── config.yaml ├── osx └── io.github.denisidoro.tcpserver.plist ├── peripherals ├── antimicro │ ├── profiles │ │ └── Game_General.gamecontroller.amgp │ └── settings.ini ├── karabiner │ ├── complex_modifications.txt │ └── karabiner.json └── skhd │ └── skhd.rc ├── raycast └── script-commands │ ├── aux │ ├── bookmark.csv │ ├── brightness.csv │ ├── focus_tab.csv │ └── yabai.csv │ ├── bookmark.template.sh │ ├── brightness.template.sh │ ├── focus_tab.template.sh │ ├── navi.sh │ ├── slack-jump.sh │ └── yabai.template.sh ├── repos ├── aes │ └── index.js ├── dotlink │ ├── add.sh │ ├── cd.sh │ ├── check.sh │ ├── clear.sh │ ├── clone.sh │ ├── common.sh │ ├── config.sh │ ├── core.sh │ ├── edit.sh │ ├── list.sh │ ├── pull.sh │ ├── set.sh │ ├── unlink.sh │ └── update.sh └── proxy │ ├── index.js │ └── package.json ├── scripts ├── android │ └── usb ├── channel │ ├── handle │ ├── notify │ └── send ├── code │ └── beautify ├── core │ ├── ansi.sh │ ├── coll.sh │ ├── docopt.py │ ├── docopts │ ├── feedback.sh │ ├── fs.sh │ ├── git.sh │ ├── ini.sh │ ├── main.sh │ ├── platform.sh │ ├── str.sh │ ├── template.sh │ └── test.sh ├── filesystem │ ├── jump │ └── remove-empty-dirs ├── game │ ├── aux │ │ └── louvre_title_map │ │ │ ├── .gitignore │ │ │ ├── gba.txt │ │ │ ├── n64.txt │ │ │ ├── psp.txt │ │ │ └── snes.txt │ ├── igdb │ └── louvre ├── git │ ├── add │ ├── aux │ │ ├── core.sh │ │ └── hooks.sh │ ├── branch │ ├── checkout │ ├── clean │ ├── commit │ ├── delete │ ├── diff │ ├── ignore │ ├── init │ ├── log │ ├── ls │ ├── master │ ├── pr │ ├── pre-commit │ ├── pre-push │ ├── pull │ ├── push │ ├── restore │ ├── stash │ └── unstage ├── home │ └── led ├── javascript │ └── nav ├── link │ ├── proxy │ └── set ├── music │ ├── score │ └── spotify ├── network │ └── proxy ├── osx │ ├── config │ ├── focus-tab │ └── startup ├── package │ ├── add │ ├── aux │ │ ├── aliases.txt │ │ ├── core.sh │ │ ├── dependencies.ini │ │ ├── github_release.sh │ │ └── recipe.sh │ ├── batch │ ├── check │ ├── pkg_managers │ │ ├── apk.sh │ │ ├── apt.sh │ │ ├── brew.sh │ │ ├── custom.sh │ │ ├── opkg.sh │ │ ├── pacman.sh │ │ ├── pip.sh │ │ ├── pkg.sh │ │ ├── port.sh │ │ ├── volta.sh │ │ └── yum.sh │ ├── proxy │ ├── recipe │ └── recipes │ │ ├── abra.sh │ │ ├── ag.sh │ │ ├── bat.sh │ │ ├── beautysh.sh │ │ ├── brew.sh │ │ ├── brightness.sh │ │ ├── bspwm.sh │ │ ├── channel-tcp.sh │ │ ├── cqlsh.sh │ │ ├── ddcctl.sh │ │ ├── delta.sh │ │ ├── docpars.sh │ │ ├── dot-folders.sh │ │ ├── dot-gitconfig.sh │ │ ├── dot-local-zshrc.sh │ │ ├── dot-source-shellrc.sh │ │ ├── exa.sh │ │ ├── fre.sh │ │ ├── fzf-latest.sh │ │ ├── fzf.sh │ │ ├── gcloud.sh │ │ ├── github-formula.sh │ │ ├── gitui.sh │ │ ├── gnu.sh │ │ ├── hunter.sh │ │ ├── imagemagick.sh │ │ ├── intellimacs.sh │ │ ├── jet.sh │ │ ├── jsmin.sh │ │ ├── keyboardSwitcher.sh │ │ ├── louvre.sh │ │ ├── luacheck.sh │ │ ├── misspell.sh │ │ ├── moreutils.sh │ │ ├── navi.sh │ │ ├── ncat.sh │ │ ├── nvim.sh │ │ ├── openresty.sh │ │ ├── phpMyAdmin.sh │ │ ├── pipenv.sh │ │ ├── pipx.sh │ │ ├── pnpm.sh │ │ ├── protoc.sh │ │ ├── python2.sh │ │ ├── python3.sh │ │ ├── reveal-md.sh │ │ ├── rg.sh │ │ ├── rustup.sh │ │ ├── spacevim.sh │ │ ├── sqlite.sh │ │ ├── ssh.sh │ │ ├── static-web-server.sh │ │ ├── storm.sh │ │ ├── svgexport.sh │ │ ├── tealdeer.sh │ │ ├── terminalizer.sh │ │ ├── termux-essentials.sh │ │ ├── termux-sudo.sh │ │ ├── termux-tudo.sh │ │ ├── vi.sh │ │ ├── vim.sh │ │ ├── vipe.sh │ │ ├── volta.sh │ │ ├── wasm-pack.sh │ │ ├── xcode-select.sh │ │ ├── zim-modules.sh │ │ └── zim.sh ├── phabricator │ ├── arcx │ └── diff ├── raycast │ └── gen ├── rice │ ├── color │ ├── colors │ ├── matrix │ ├── pipes │ └── type ├── rust │ ├── aux │ │ └── core.bash │ ├── build-android │ ├── fix │ ├── push-android │ ├── release │ ├── run │ ├── ssh-android │ ├── tag │ └── termux-run ├── script │ ├── ansi │ ├── bash │ ├── clip │ ├── color │ ├── dashed │ ├── eval │ ├── expand │ ├── faketty │ ├── less │ ├── log │ ├── navi │ ├── open │ ├── ssh │ ├── test │ ├── yaml │ └── zsh ├── security │ ├── aes │ ├── decrypt │ ├── encrypt │ ├── sha256 │ ├── store │ └── unzip ├── self │ ├── bump │ ├── docker │ ├── edit │ ├── health │ ├── install │ ├── link │ ├── lint │ ├── shellcheck │ ├── test │ ├── update │ └── x ├── sesc │ └── agendar ├── share │ └── whatsapp ├── storm │ ├── aux │ │ └── core.sh │ ├── camera │ ├── password │ ├── run │ ├── upload │ └── zip ├── system │ ├── display │ └── wm ├── telegram │ └── message ├── termux │ ├── aux │ │ ├── core.sh │ │ └── universal.sh │ ├── cast │ ├── channeltcp │ ├── cp-tasker-scripts │ ├── send-message-tcp │ └── wol ├── termuxpc │ ├── aux │ │ └── core.sh │ ├── dotfiles │ ├── push │ └── ssh └── windows │ ├── app-shortcuts │ ├── aux │ └── core.sh │ └── shortcut ├── shell ├── aliases │ ├── core.bash │ ├── git.bash │ ├── linux.bash │ └── osx.bash ├── aux │ ├── core.bash │ ├── vars.bash │ └── work_public.bash ├── bash │ └── bashrc ├── hushlogin ├── profile ├── themes │ ├── core.zsh │ ├── dns.bash │ ├── p10k.zsh │ └── prompt_dns_setup └── zsh │ ├── bindings │ ├── editing.zsh │ ├── fzf.zsh │ ├── navi.zsh │ └── zim.zsh │ ├── completions │ └── _dot │ ├── zimrc │ └── zshrc ├── terminal ├── alacritty │ └── alacritty.yml ├── kitty │ └── kitty.conf └── windows │ └── settings.json ├── termux └── tasker │ ├── cmd │ ├── dot │ ├── dot-termux │ ├── eval │ ├── louvre │ ├── storm │ └── tasker └── tests ├── bashrc.sh ├── coll.sh ├── help.sh ├── imports.sh ├── json.sh ├── platform.sh ├── references.sh ├── shellcheck.sh └── symlink.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @denisidoro 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: denisidoro 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/$: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | "$@" -------------------------------------------------------------------------------- /bin/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/dot -------------------------------------------------------------------------------- /bin/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/e -------------------------------------------------------------------------------- /bin/git-dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/git-dot -------------------------------------------------------------------------------- /bin/quicknavi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/quicknavi -------------------------------------------------------------------------------- /bin/startup-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/startup-cmd -------------------------------------------------------------------------------- /bin/v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/bin/v -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/config.yaml -------------------------------------------------------------------------------- /docs/cheatsheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/docs/cheatsheets.md -------------------------------------------------------------------------------- /docs/navigators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/docs/navigators.md -------------------------------------------------------------------------------- /docs/package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/docs/package-manager.md -------------------------------------------------------------------------------- /editors/intellij/ideavim.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/editors/intellij/ideavim.rc -------------------------------------------------------------------------------- /editors/spacevim/spacevim.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/editors/spacevim/spacevim.rc -------------------------------------------------------------------------------- /editors/vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/editors/vscode/keybindings.json -------------------------------------------------------------------------------- /editors/vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/editors/vscode/settings.json -------------------------------------------------------------------------------- /editors/vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/editors/vscode/tasks.json -------------------------------------------------------------------------------- /git/agignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/git/agignore -------------------------------------------------------------------------------- /git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/git/config -------------------------------------------------------------------------------- /git/gitui_config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/git/gitui_config.ron -------------------------------------------------------------------------------- /git/hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # dot git pre-commit "$@" 4 | -------------------------------------------------------------------------------- /git/hooks/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | dot git pre-push "$@" 4 | -------------------------------------------------------------------------------- /git/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/git/ignore -------------------------------------------------------------------------------- /links/android.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/links/android.csv -------------------------------------------------------------------------------- /links/linux.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/links/linux.csv -------------------------------------------------------------------------------- /links/osx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/links/osx.csv -------------------------------------------------------------------------------- /links/unix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/links/unix.csv -------------------------------------------------------------------------------- /links/work.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /links/wsl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/links/wsl.csv -------------------------------------------------------------------------------- /navi/cheats/android.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/android.cheat -------------------------------------------------------------------------------- /navi/cheats/bazel.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/bazel.cheat -------------------------------------------------------------------------------- /navi/cheats/brew.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/brew.cheat -------------------------------------------------------------------------------- /navi/cheats/clipboard.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/clipboard.cheat -------------------------------------------------------------------------------- /navi/cheats/docker.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/docker.cheat -------------------------------------------------------------------------------- /navi/cheats/editor.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/editor.cheat -------------------------------------------------------------------------------- /navi/cheats/filesystem.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/filesystem.cheat -------------------------------------------------------------------------------- /navi/cheats/git.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/git.cheat -------------------------------------------------------------------------------- /navi/cheats/image.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/image.cheat -------------------------------------------------------------------------------- /navi/cheats/jvm.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/jvm.cheat -------------------------------------------------------------------------------- /navi/cheats/kitty.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/kitty.cheat -------------------------------------------------------------------------------- /navi/cheats/network.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/network.cheat -------------------------------------------------------------------------------- /navi/cheats/osx.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/osx.cheat -------------------------------------------------------------------------------- /navi/cheats/process.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/process.cheat -------------------------------------------------------------------------------- /navi/cheats/shell.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/shell.cheat -------------------------------------------------------------------------------- /navi/cheats/tmp.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/cheats/tmp.cheat -------------------------------------------------------------------------------- /navi/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/navi/config.yaml -------------------------------------------------------------------------------- /osx/io.github.denisidoro.tcpserver.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/osx/io.github.denisidoro.tcpserver.plist -------------------------------------------------------------------------------- /peripherals/antimicro/profiles/Game_General.gamecontroller.amgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/peripherals/antimicro/profiles/Game_General.gamecontroller.amgp -------------------------------------------------------------------------------- /peripherals/antimicro/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/peripherals/antimicro/settings.ini -------------------------------------------------------------------------------- /peripherals/karabiner/complex_modifications.txt: -------------------------------------------------------------------------------- 1 | CapsLock to Hyper/Escape 2 | Disable Cmd+H Hide (rev 2) -> broken, apparently -------------------------------------------------------------------------------- /peripherals/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/peripherals/karabiner/karabiner.json -------------------------------------------------------------------------------- /peripherals/skhd/skhd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/peripherals/skhd/skhd.rc -------------------------------------------------------------------------------- /raycast/script-commands/aux/bookmark.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/aux/bookmark.csv -------------------------------------------------------------------------------- /raycast/script-commands/aux/brightness.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/aux/brightness.csv -------------------------------------------------------------------------------- /raycast/script-commands/aux/focus_tab.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/aux/focus_tab.csv -------------------------------------------------------------------------------- /raycast/script-commands/aux/yabai.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/aux/yabai.csv -------------------------------------------------------------------------------- /raycast/script-commands/bookmark.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/bookmark.template.sh -------------------------------------------------------------------------------- /raycast/script-commands/brightness.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/brightness.template.sh -------------------------------------------------------------------------------- /raycast/script-commands/focus_tab.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/focus_tab.template.sh -------------------------------------------------------------------------------- /raycast/script-commands/navi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/navi.sh -------------------------------------------------------------------------------- /raycast/script-commands/slack-jump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/slack-jump.sh -------------------------------------------------------------------------------- /raycast/script-commands/yabai.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/raycast/script-commands/yabai.template.sh -------------------------------------------------------------------------------- /repos/aes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/aes/index.js -------------------------------------------------------------------------------- /repos/dotlink/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/add.sh -------------------------------------------------------------------------------- /repos/dotlink/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/cd.sh -------------------------------------------------------------------------------- /repos/dotlink/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/check.sh -------------------------------------------------------------------------------- /repos/dotlink/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/clear.sh -------------------------------------------------------------------------------- /repos/dotlink/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/clone.sh -------------------------------------------------------------------------------- /repos/dotlink/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/common.sh -------------------------------------------------------------------------------- /repos/dotlink/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/config.sh -------------------------------------------------------------------------------- /repos/dotlink/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/core.sh -------------------------------------------------------------------------------- /repos/dotlink/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/edit.sh -------------------------------------------------------------------------------- /repos/dotlink/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/list.sh -------------------------------------------------------------------------------- /repos/dotlink/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/pull.sh -------------------------------------------------------------------------------- /repos/dotlink/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/set.sh -------------------------------------------------------------------------------- /repos/dotlink/unlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/unlink.sh -------------------------------------------------------------------------------- /repos/dotlink/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/dotlink/update.sh -------------------------------------------------------------------------------- /repos/proxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/proxy/index.js -------------------------------------------------------------------------------- /repos/proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/repos/proxy/package.json -------------------------------------------------------------------------------- /scripts/android/usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/android/usb -------------------------------------------------------------------------------- /scripts/channel/handle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/channel/handle -------------------------------------------------------------------------------- /scripts/channel/notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/channel/notify -------------------------------------------------------------------------------- /scripts/channel/send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/channel/send -------------------------------------------------------------------------------- /scripts/code/beautify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/code/beautify -------------------------------------------------------------------------------- /scripts/core/ansi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/ansi.sh -------------------------------------------------------------------------------- /scripts/core/coll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/coll.sh -------------------------------------------------------------------------------- /scripts/core/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/docopt.py -------------------------------------------------------------------------------- /scripts/core/docopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/docopts -------------------------------------------------------------------------------- /scripts/core/feedback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/feedback.sh -------------------------------------------------------------------------------- /scripts/core/fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/fs.sh -------------------------------------------------------------------------------- /scripts/core/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/git.sh -------------------------------------------------------------------------------- /scripts/core/ini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/ini.sh -------------------------------------------------------------------------------- /scripts/core/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/main.sh -------------------------------------------------------------------------------- /scripts/core/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/platform.sh -------------------------------------------------------------------------------- /scripts/core/str.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/str.sh -------------------------------------------------------------------------------- /scripts/core/template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/template.sh -------------------------------------------------------------------------------- /scripts/core/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/core/test.sh -------------------------------------------------------------------------------- /scripts/filesystem/jump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/filesystem/jump -------------------------------------------------------------------------------- /scripts/filesystem/remove-empty-dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/filesystem/remove-empty-dirs -------------------------------------------------------------------------------- /scripts/game/aux/louvre_title_map/.gitignore: -------------------------------------------------------------------------------- 1 | arcade.txt -------------------------------------------------------------------------------- /scripts/game/aux/louvre_title_map/gba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/aux/louvre_title_map/gba.txt -------------------------------------------------------------------------------- /scripts/game/aux/louvre_title_map/n64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/aux/louvre_title_map/n64.txt -------------------------------------------------------------------------------- /scripts/game/aux/louvre_title_map/psp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/aux/louvre_title_map/psp.txt -------------------------------------------------------------------------------- /scripts/game/aux/louvre_title_map/snes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/aux/louvre_title_map/snes.txt -------------------------------------------------------------------------------- /scripts/game/igdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/igdb -------------------------------------------------------------------------------- /scripts/game/louvre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/game/louvre -------------------------------------------------------------------------------- /scripts/git/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/add -------------------------------------------------------------------------------- /scripts/git/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/aux/core.sh -------------------------------------------------------------------------------- /scripts/git/aux/hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/aux/hooks.sh -------------------------------------------------------------------------------- /scripts/git/branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/branch -------------------------------------------------------------------------------- /scripts/git/checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/checkout -------------------------------------------------------------------------------- /scripts/git/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/clean -------------------------------------------------------------------------------- /scripts/git/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/commit -------------------------------------------------------------------------------- /scripts/git/delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/delete -------------------------------------------------------------------------------- /scripts/git/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/diff -------------------------------------------------------------------------------- /scripts/git/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/ignore -------------------------------------------------------------------------------- /scripts/git/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/init -------------------------------------------------------------------------------- /scripts/git/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/log -------------------------------------------------------------------------------- /scripts/git/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/ls -------------------------------------------------------------------------------- /scripts/git/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/master -------------------------------------------------------------------------------- /scripts/git/pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/pr -------------------------------------------------------------------------------- /scripts/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/pre-commit -------------------------------------------------------------------------------- /scripts/git/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/pre-push -------------------------------------------------------------------------------- /scripts/git/pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/pull -------------------------------------------------------------------------------- /scripts/git/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/push -------------------------------------------------------------------------------- /scripts/git/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/restore -------------------------------------------------------------------------------- /scripts/git/stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/stash -------------------------------------------------------------------------------- /scripts/git/unstage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/git/unstage -------------------------------------------------------------------------------- /scripts/home/led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/home/led -------------------------------------------------------------------------------- /scripts/javascript/nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/javascript/nav -------------------------------------------------------------------------------- /scripts/link/proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/link/proxy -------------------------------------------------------------------------------- /scripts/link/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/link/set -------------------------------------------------------------------------------- /scripts/music/score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/music/score -------------------------------------------------------------------------------- /scripts/music/spotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/music/spotify -------------------------------------------------------------------------------- /scripts/network/proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/network/proxy -------------------------------------------------------------------------------- /scripts/osx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/osx/config -------------------------------------------------------------------------------- /scripts/osx/focus-tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/osx/focus-tab -------------------------------------------------------------------------------- /scripts/osx/startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/osx/startup -------------------------------------------------------------------------------- /scripts/package/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/add -------------------------------------------------------------------------------- /scripts/package/aux/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/aux/aliases.txt -------------------------------------------------------------------------------- /scripts/package/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/aux/core.sh -------------------------------------------------------------------------------- /scripts/package/aux/dependencies.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/aux/dependencies.ini -------------------------------------------------------------------------------- /scripts/package/aux/github_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/aux/github_release.sh -------------------------------------------------------------------------------- /scripts/package/aux/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/aux/recipe.sh -------------------------------------------------------------------------------- /scripts/package/batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/batch -------------------------------------------------------------------------------- /scripts/package/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/check -------------------------------------------------------------------------------- /scripts/package/pkg_managers/apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/apk.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/apt.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/brew.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/custom.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/opkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/opkg.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/pacman.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/pip.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/pkg.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/port.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/volta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/volta.sh -------------------------------------------------------------------------------- /scripts/package/pkg_managers/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/pkg_managers/yum.sh -------------------------------------------------------------------------------- /scripts/package/proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/proxy -------------------------------------------------------------------------------- /scripts/package/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipe -------------------------------------------------------------------------------- /scripts/package/recipes/abra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/abra.sh -------------------------------------------------------------------------------- /scripts/package/recipes/ag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/ag.sh -------------------------------------------------------------------------------- /scripts/package/recipes/bat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/bat.sh -------------------------------------------------------------------------------- /scripts/package/recipes/beautysh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/beautysh.sh -------------------------------------------------------------------------------- /scripts/package/recipes/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/brew.sh -------------------------------------------------------------------------------- /scripts/package/recipes/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/brightness.sh -------------------------------------------------------------------------------- /scripts/package/recipes/bspwm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/bspwm.sh -------------------------------------------------------------------------------- /scripts/package/recipes/channel-tcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/channel-tcp.sh -------------------------------------------------------------------------------- /scripts/package/recipes/cqlsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/cqlsh.sh -------------------------------------------------------------------------------- /scripts/package/recipes/ddcctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/ddcctl.sh -------------------------------------------------------------------------------- /scripts/package/recipes/delta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/delta.sh -------------------------------------------------------------------------------- /scripts/package/recipes/docpars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/docpars.sh -------------------------------------------------------------------------------- /scripts/package/recipes/dot-folders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/dot-folders.sh -------------------------------------------------------------------------------- /scripts/package/recipes/dot-gitconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/dot-gitconfig.sh -------------------------------------------------------------------------------- /scripts/package/recipes/dot-local-zshrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/dot-local-zshrc.sh -------------------------------------------------------------------------------- /scripts/package/recipes/dot-source-shellrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/dot-source-shellrc.sh -------------------------------------------------------------------------------- /scripts/package/recipes/exa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/exa.sh -------------------------------------------------------------------------------- /scripts/package/recipes/fre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/fre.sh -------------------------------------------------------------------------------- /scripts/package/recipes/fzf-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/fzf-latest.sh -------------------------------------------------------------------------------- /scripts/package/recipes/fzf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/fzf.sh -------------------------------------------------------------------------------- /scripts/package/recipes/gcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/gcloud.sh -------------------------------------------------------------------------------- /scripts/package/recipes/github-formula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/github-formula.sh -------------------------------------------------------------------------------- /scripts/package/recipes/gitui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/gitui.sh -------------------------------------------------------------------------------- /scripts/package/recipes/gnu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/gnu.sh -------------------------------------------------------------------------------- /scripts/package/recipes/hunter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/hunter.sh -------------------------------------------------------------------------------- /scripts/package/recipes/imagemagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/imagemagick.sh -------------------------------------------------------------------------------- /scripts/package/recipes/intellimacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/intellimacs.sh -------------------------------------------------------------------------------- /scripts/package/recipes/jet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/jet.sh -------------------------------------------------------------------------------- /scripts/package/recipes/jsmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/jsmin.sh -------------------------------------------------------------------------------- /scripts/package/recipes/keyboardSwitcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/keyboardSwitcher.sh -------------------------------------------------------------------------------- /scripts/package/recipes/louvre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/louvre.sh -------------------------------------------------------------------------------- /scripts/package/recipes/luacheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/luacheck.sh -------------------------------------------------------------------------------- /scripts/package/recipes/misspell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/misspell.sh -------------------------------------------------------------------------------- /scripts/package/recipes/moreutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/moreutils.sh -------------------------------------------------------------------------------- /scripts/package/recipes/navi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/navi.sh -------------------------------------------------------------------------------- /scripts/package/recipes/ncat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/ncat.sh -------------------------------------------------------------------------------- /scripts/package/recipes/nvim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/nvim.sh -------------------------------------------------------------------------------- /scripts/package/recipes/openresty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/openresty.sh -------------------------------------------------------------------------------- /scripts/package/recipes/phpMyAdmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/phpMyAdmin.sh -------------------------------------------------------------------------------- /scripts/package/recipes/pipenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/pipenv.sh -------------------------------------------------------------------------------- /scripts/package/recipes/pipx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/pipx.sh -------------------------------------------------------------------------------- /scripts/package/recipes/pnpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/pnpm.sh -------------------------------------------------------------------------------- /scripts/package/recipes/protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/protoc.sh -------------------------------------------------------------------------------- /scripts/package/recipes/python2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/python2.sh -------------------------------------------------------------------------------- /scripts/package/recipes/python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/python3.sh -------------------------------------------------------------------------------- /scripts/package/recipes/reveal-md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/reveal-md.sh -------------------------------------------------------------------------------- /scripts/package/recipes/rg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/rg.sh -------------------------------------------------------------------------------- /scripts/package/recipes/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/rustup.sh -------------------------------------------------------------------------------- /scripts/package/recipes/spacevim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/spacevim.sh -------------------------------------------------------------------------------- /scripts/package/recipes/sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/sqlite.sh -------------------------------------------------------------------------------- /scripts/package/recipes/ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/ssh.sh -------------------------------------------------------------------------------- /scripts/package/recipes/static-web-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/static-web-server.sh -------------------------------------------------------------------------------- /scripts/package/recipes/storm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/storm.sh -------------------------------------------------------------------------------- /scripts/package/recipes/svgexport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/svgexport.sh -------------------------------------------------------------------------------- /scripts/package/recipes/tealdeer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/tealdeer.sh -------------------------------------------------------------------------------- /scripts/package/recipes/terminalizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/terminalizer.sh -------------------------------------------------------------------------------- /scripts/package/recipes/termux-essentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/termux-essentials.sh -------------------------------------------------------------------------------- /scripts/package/recipes/termux-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/termux-sudo.sh -------------------------------------------------------------------------------- /scripts/package/recipes/termux-tudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/termux-tudo.sh -------------------------------------------------------------------------------- /scripts/package/recipes/vi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/vi.sh -------------------------------------------------------------------------------- /scripts/package/recipes/vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/vim.sh -------------------------------------------------------------------------------- /scripts/package/recipes/vipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/vipe.sh -------------------------------------------------------------------------------- /scripts/package/recipes/volta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/volta.sh -------------------------------------------------------------------------------- /scripts/package/recipes/wasm-pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/wasm-pack.sh -------------------------------------------------------------------------------- /scripts/package/recipes/xcode-select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/xcode-select.sh -------------------------------------------------------------------------------- /scripts/package/recipes/zim-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/zim-modules.sh -------------------------------------------------------------------------------- /scripts/package/recipes/zim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/package/recipes/zim.sh -------------------------------------------------------------------------------- /scripts/phabricator/arcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/phabricator/arcx -------------------------------------------------------------------------------- /scripts/phabricator/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/phabricator/diff -------------------------------------------------------------------------------- /scripts/raycast/gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/raycast/gen -------------------------------------------------------------------------------- /scripts/rice/color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rice/color -------------------------------------------------------------------------------- /scripts/rice/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rice/colors -------------------------------------------------------------------------------- /scripts/rice/matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rice/matrix -------------------------------------------------------------------------------- /scripts/rice/pipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rice/pipes -------------------------------------------------------------------------------- /scripts/rice/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rice/type -------------------------------------------------------------------------------- /scripts/rust/aux/core.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/aux/core.bash -------------------------------------------------------------------------------- /scripts/rust/build-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/build-android -------------------------------------------------------------------------------- /scripts/rust/fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/fix -------------------------------------------------------------------------------- /scripts/rust/push-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/push-android -------------------------------------------------------------------------------- /scripts/rust/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/release -------------------------------------------------------------------------------- /scripts/rust/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/run -------------------------------------------------------------------------------- /scripts/rust/ssh-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/ssh-android -------------------------------------------------------------------------------- /scripts/rust/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/tag -------------------------------------------------------------------------------- /scripts/rust/termux-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/rust/termux-run -------------------------------------------------------------------------------- /scripts/script/ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/ansi -------------------------------------------------------------------------------- /scripts/script/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/bash -------------------------------------------------------------------------------- /scripts/script/clip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/clip -------------------------------------------------------------------------------- /scripts/script/color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/color -------------------------------------------------------------------------------- /scripts/script/dashed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/dashed -------------------------------------------------------------------------------- /scripts/script/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/eval -------------------------------------------------------------------------------- /scripts/script/expand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/expand -------------------------------------------------------------------------------- /scripts/script/faketty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/faketty -------------------------------------------------------------------------------- /scripts/script/less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/less -------------------------------------------------------------------------------- /scripts/script/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/log -------------------------------------------------------------------------------- /scripts/script/navi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/navi -------------------------------------------------------------------------------- /scripts/script/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/open -------------------------------------------------------------------------------- /scripts/script/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/ssh -------------------------------------------------------------------------------- /scripts/script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/test -------------------------------------------------------------------------------- /scripts/script/yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/yaml -------------------------------------------------------------------------------- /scripts/script/zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/script/zsh -------------------------------------------------------------------------------- /scripts/security/aes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/aes -------------------------------------------------------------------------------- /scripts/security/decrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/decrypt -------------------------------------------------------------------------------- /scripts/security/encrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/encrypt -------------------------------------------------------------------------------- /scripts/security/sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/sha256 -------------------------------------------------------------------------------- /scripts/security/store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/store -------------------------------------------------------------------------------- /scripts/security/unzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/security/unzip -------------------------------------------------------------------------------- /scripts/self/bump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/bump -------------------------------------------------------------------------------- /scripts/self/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/docker -------------------------------------------------------------------------------- /scripts/self/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/edit -------------------------------------------------------------------------------- /scripts/self/health: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/health -------------------------------------------------------------------------------- /scripts/self/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/install -------------------------------------------------------------------------------- /scripts/self/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/link -------------------------------------------------------------------------------- /scripts/self/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/lint -------------------------------------------------------------------------------- /scripts/self/shellcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/shellcheck -------------------------------------------------------------------------------- /scripts/self/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/test -------------------------------------------------------------------------------- /scripts/self/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/update -------------------------------------------------------------------------------- /scripts/self/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/self/x -------------------------------------------------------------------------------- /scripts/sesc/agendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/sesc/agendar -------------------------------------------------------------------------------- /scripts/share/whatsapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/share/whatsapp -------------------------------------------------------------------------------- /scripts/storm/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/storm/aux/core.sh -------------------------------------------------------------------------------- /scripts/storm/camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/storm/camera -------------------------------------------------------------------------------- /scripts/storm/password: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | "${DOTFILES}/local/scripts/cloud/password" "$@" 4 | -------------------------------------------------------------------------------- /scripts/storm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/storm/run -------------------------------------------------------------------------------- /scripts/storm/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/storm/upload -------------------------------------------------------------------------------- /scripts/storm/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/storm/zip -------------------------------------------------------------------------------- /scripts/system/display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/system/display -------------------------------------------------------------------------------- /scripts/system/wm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/system/wm -------------------------------------------------------------------------------- /scripts/telegram/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/telegram/message -------------------------------------------------------------------------------- /scripts/termux/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/aux/core.sh -------------------------------------------------------------------------------- /scripts/termux/aux/universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/aux/universal.sh -------------------------------------------------------------------------------- /scripts/termux/cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/cast -------------------------------------------------------------------------------- /scripts/termux/channeltcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/channeltcp -------------------------------------------------------------------------------- /scripts/termux/cp-tasker-scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/cp-tasker-scripts -------------------------------------------------------------------------------- /scripts/termux/send-message-tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/send-message-tcp -------------------------------------------------------------------------------- /scripts/termux/wol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termux/wol -------------------------------------------------------------------------------- /scripts/termuxpc/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termuxpc/aux/core.sh -------------------------------------------------------------------------------- /scripts/termuxpc/dotfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termuxpc/dotfiles -------------------------------------------------------------------------------- /scripts/termuxpc/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termuxpc/push -------------------------------------------------------------------------------- /scripts/termuxpc/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/termuxpc/ssh -------------------------------------------------------------------------------- /scripts/windows/app-shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/windows/app-shortcuts -------------------------------------------------------------------------------- /scripts/windows/aux/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/windows/aux/core.sh -------------------------------------------------------------------------------- /scripts/windows/shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/scripts/windows/shortcut -------------------------------------------------------------------------------- /shell/aliases/core.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aliases/core.bash -------------------------------------------------------------------------------- /shell/aliases/git.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aliases/git.bash -------------------------------------------------------------------------------- /shell/aliases/linux.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aliases/linux.bash -------------------------------------------------------------------------------- /shell/aliases/osx.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aliases/osx.bash -------------------------------------------------------------------------------- /shell/aux/core.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aux/core.bash -------------------------------------------------------------------------------- /shell/aux/vars.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aux/vars.bash -------------------------------------------------------------------------------- /shell/aux/work_public.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/aux/work_public.bash -------------------------------------------------------------------------------- /shell/bash/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/bash/bashrc -------------------------------------------------------------------------------- /shell/hushlogin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/profile: -------------------------------------------------------------------------------- 1 | # wmname LG3D 2 | ulimit -u 10000 3 | 4 | # . "$HOME/.cargo/env" 5 | -------------------------------------------------------------------------------- /shell/themes/core.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/themes/core.zsh -------------------------------------------------------------------------------- /shell/themes/dns.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/themes/dns.bash -------------------------------------------------------------------------------- /shell/themes/p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/themes/p10k.zsh -------------------------------------------------------------------------------- /shell/themes/prompt_dns_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/themes/prompt_dns_setup -------------------------------------------------------------------------------- /shell/zsh/bindings/editing.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/bindings/editing.zsh -------------------------------------------------------------------------------- /shell/zsh/bindings/fzf.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/bindings/fzf.zsh -------------------------------------------------------------------------------- /shell/zsh/bindings/navi.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/bindings/navi.zsh -------------------------------------------------------------------------------- /shell/zsh/bindings/zim.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/bindings/zim.zsh -------------------------------------------------------------------------------- /shell/zsh/completions/_dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/completions/_dot -------------------------------------------------------------------------------- /shell/zsh/zimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/zimrc -------------------------------------------------------------------------------- /shell/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/shell/zsh/zshrc -------------------------------------------------------------------------------- /terminal/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/terminal/alacritty/alacritty.yml -------------------------------------------------------------------------------- /terminal/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/terminal/kitty/kitty.conf -------------------------------------------------------------------------------- /terminal/windows/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/terminal/windows/settings.json -------------------------------------------------------------------------------- /termux/tasker/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/cmd -------------------------------------------------------------------------------- /termux/tasker/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/dot -------------------------------------------------------------------------------- /termux/tasker/dot-termux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/dot-termux -------------------------------------------------------------------------------- /termux/tasker/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/eval -------------------------------------------------------------------------------- /termux/tasker/louvre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/louvre -------------------------------------------------------------------------------- /termux/tasker/storm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/termux/tasker/storm -------------------------------------------------------------------------------- /termux/tasker/tasker: -------------------------------------------------------------------------------- 1 | /Users/denis.isidoro/dotfiles/termux/tasker -------------------------------------------------------------------------------- /tests/bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/bashrc.sh -------------------------------------------------------------------------------- /tests/coll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/coll.sh -------------------------------------------------------------------------------- /tests/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/help.sh -------------------------------------------------------------------------------- /tests/imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/imports.sh -------------------------------------------------------------------------------- /tests/json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/json.sh -------------------------------------------------------------------------------- /tests/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/platform.sh -------------------------------------------------------------------------------- /tests/references.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/references.sh -------------------------------------------------------------------------------- /tests/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/shellcheck.sh -------------------------------------------------------------------------------- /tests/symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisidoro/dotfiles/HEAD/tests/symlink.sh --------------------------------------------------------------------------------