├── .config ├── karabiner │ └── karabiner.json └── sketchybar │ ├── plugins │ ├── airpods_battery.sh │ ├── brightness.sh │ ├── clock.sh │ ├── cpu.sh │ ├── cpu_graph.sh │ ├── disk.sh │ ├── dndIndicator.sh │ ├── gitNotifications.sh │ ├── githubIndicator.sh │ ├── hide_bar.sh │ ├── io_speed.sh │ ├── mailIndicator.sh │ ├── messages.sh │ ├── music.sh │ ├── music_click.sh │ ├── net.sh │ ├── network.sh │ ├── network_graph.sh │ ├── package_monitor.sh │ ├── power.sh │ ├── ram.sh │ ├── space.sh │ ├── spotifyIndicator.sh │ ├── test.sh │ ├── topmem.sh │ ├── topproc.sh │ ├── volume.sh │ ├── vpn.sh │ ├── weather.sh │ ├── yabai_float.sh │ ├── yabai_float_click.sh │ ├── yabai_mode.sh │ └── yabai_mode_click.sh │ └── sketchybarrc ├── .doom.d ├── config.el ├── custom.el ├── init.el └── packages.el ├── .hammerspoon ├── Spoons │ ├── KSheet.spoon.zip │ ├── MenuHammer.spoon.zip │ ├── MouseCircle.spoon.zip │ └── Shade.spoon.zip ├── init.lua ├── menuHammerCustomConfig.lua ├── slowq.lua └── stackline │ ├── README.md │ ├── bin │ └── yabai-get-stack-idx │ ├── conf.lua │ ├── lib │ ├── debug.lua │ ├── json.lua │ ├── utils.lua │ └── valid.lua │ └── stackline │ ├── configmanager.lua │ ├── query.lua │ ├── stack.lua │ ├── stackline.lua │ ├── stackmanager.lua │ └── window.lua ├── .limelightrc ├── .p10k.zsh ├── .scripts ├── .border ├── .gaps ├── .hide_bar ├── .space_change ├── .terminal ├── .uber ├── Unused │ ├── toggle_monocle_mode │ └── undock.sh └── color-scripts │ ├── .random-color │ ├── color-scripts │ ├── alpha │ ├── arch │ ├── blocks1 │ ├── blocks2 │ ├── bloks │ ├── colorbars │ ├── colortest │ ├── colortest-slim │ ├── colorview │ ├── colorwheel │ ├── crunch │ ├── crunchbang │ ├── crunchbang-mini │ ├── darthvader │ ├── dotx │ ├── elfman │ ├── faces │ ├── fade │ ├── ghosts │ ├── illumina │ ├── jangofett │ ├── monster │ ├── mouseface │ ├── mouseface2 │ ├── not-working │ │ ├── bars │ │ ├── crowns │ │ ├── dna │ │ ├── guns │ │ ├── hex │ │ ├── hex-block │ │ ├── pacman │ │ ├── panes │ │ ├── pipes1 │ │ ├── pipes2 │ │ ├── pipes2-slim │ │ ├── space-invaders │ │ ├── spectrum │ │ └── zwaves │ ├── pinguco │ ├── pukeskull │ ├── rails │ ├── rally-x │ ├── rupees │ ├── spectrum │ ├── square │ ├── tanks │ ├── thebat │ ├── thebat2 │ ├── tiefighter1 │ ├── tiefighter1-no-invo │ ├── tiefighter1row │ ├── tiefighter2 │ └── unowns.py │ └── test-color-support │ ├── README.md │ ├── ansi │ ├── color-support1.pl │ ├── color-support2 │ └── print-colors.py ├── .skhdrc ├── .spacevim.d └── init.toml ├── .tmux ├── .tmux.conf ├── plugins │ ├── tmux-battery │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── battery.tmux │ │ ├── screenshots │ │ │ ├── battery_charging_tier1.png │ │ │ ├── battery_charging_tier2.png │ │ │ ├── battery_charging_tier3.png │ │ │ ├── battery_charging_tier4.png │ │ │ ├── battery_charging_tier5.png │ │ │ ├── battery_charging_tier6.png │ │ │ ├── battery_charging_tier7.png │ │ │ ├── battery_charging_tier8.png │ │ │ ├── battery_discharging_tier1.png │ │ │ ├── battery_discharging_tier2.png │ │ │ ├── battery_discharging_tier3.png │ │ │ ├── battery_discharging_tier4.png │ │ │ ├── battery_discharging_tier5.png │ │ │ ├── battery_discharging_tier6.png │ │ │ ├── battery_discharging_tier7.png │ │ │ ├── battery_discharging_tier8.png │ │ │ ├── battery_status_attached.png │ │ │ └── battery_status_unknown.png │ │ └── scripts │ │ │ ├── battery_color.sh │ │ │ ├── battery_color_charge.sh │ │ │ ├── battery_color_status.sh │ │ │ ├── battery_graph.sh │ │ │ ├── battery_icon.sh │ │ │ ├── battery_icon_charge.sh │ │ │ ├── battery_icon_status.sh │ │ │ ├── battery_percentage.sh │ │ │ ├── battery_remain.sh │ │ │ ├── battery_status_bg.sh │ │ │ ├── battery_status_fg.sh │ │ │ └── helpers.sh │ ├── tmux-copycat │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── copycat.tmux │ │ ├── docs │ │ │ ├── customizations.md │ │ │ ├── defining_new_stored_searches.md │ │ │ ├── installation_for_tmux_2.3.md │ │ │ └── limitations.md │ │ ├── run-tests │ │ ├── scripts │ │ │ ├── check_tmux_version.sh │ │ │ ├── copycat_generate_results.sh │ │ │ ├── copycat_git_special.sh │ │ │ ├── copycat_jump.sh │ │ │ ├── copycat_mode_bindings.sh │ │ │ ├── copycat_mode_quit.sh │ │ │ ├── copycat_mode_start.sh │ │ │ ├── copycat_search.sh │ │ │ ├── helpers.sh │ │ │ ├── stored_search_helpers.sh │ │ │ └── variables.sh │ │ ├── test │ │ │ ├── README.md │ │ │ ├── helpers │ │ │ │ ├── expect_copycat_assertions.exp │ │ │ │ ├── expect_copycat_helpers.exp │ │ │ │ ├── expect_helpers.exp │ │ │ │ ├── run_tmux.exp │ │ │ │ ├── setup.exp │ │ │ │ ├── setup_tmux_conf.sh │ │ │ │ ├── setup_tmux_conf_with_custom_searches.sh │ │ │ │ ├── setup_with_custom_searches.exp │ │ │ │ └── test.exp │ │ │ ├── run-tests-within-vm │ │ │ ├── test_digit_search.exp │ │ │ ├── test_file_search.exp │ │ │ ├── test_free_search.exp │ │ │ ├── test_git_hash_search.exp │ │ │ ├── test_git_status_search.exp │ │ │ ├── test_url_search.exp │ │ │ └── test_user_defined_search.exp │ │ ├── vagrant_ubuntu_provisioning_two_five.sh │ │ └── video │ │ │ ├── README.md │ │ │ ├── screencast_img.png │ │ │ └── script.md │ ├── tmux-online-status │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── online_status.tmux │ │ ├── screenshots │ │ │ ├── offline_indicator.png │ │ │ ├── offline_indicator_linux.png │ │ │ ├── online_indicator.png │ │ │ └── online_indicator_linux.png │ │ └── scripts │ │ │ ├── online_status_icon.sh │ │ │ └── shared.sh │ ├── tmux-open │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── open.tmux │ │ ├── scripts │ │ │ ├── helpers.sh │ │ │ └── tmux_open_error_message.sh │ │ └── video │ │ │ ├── screencast_img.png │ │ │ └── script.md │ ├── tmux-plugin-sysstat │ │ ├── LICENSE │ │ ├── readme.md │ │ ├── screenshots │ │ │ ├── cpu_thresholds.png │ │ │ └── intro.png │ │ ├── scripts │ │ │ ├── cpu.sh │ │ │ ├── cpu_collect.sh │ │ │ ├── helpers.sh │ │ │ ├── loadavg.sh │ │ │ ├── mem.sh │ │ │ └── swap.sh │ │ └── sysstat.tmux │ ├── tmux-prefix-highlight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── prefix_highlight.tmux │ │ └── screenshots │ │ │ ├── prefix_off.png │ │ │ └── prefix_on.png │ ├── tmux-sidebar │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── docs │ │ │ └── options.md │ │ ├── screenshot.gif │ │ ├── scripts │ │ │ ├── check_tmux_version.sh │ │ │ ├── custom_tree.sh │ │ │ ├── helpers.sh │ │ │ ├── save_sidebar_width.sh │ │ │ ├── toggle.sh │ │ │ ├── tree_helpers.sh │ │ │ └── variables.sh │ │ └── sidebar.tmux │ └── tpm │ │ ├── CHANGELOG.md │ │ ├── HOW_TO_PLUGIN.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ ├── clean_plugins │ │ ├── install_plugins │ │ └── update_plugins │ │ ├── bindings │ │ ├── clean_plugins │ │ ├── install_plugins │ │ └── update_plugins │ │ ├── docs │ │ ├── automatic_tpm_installation.md │ │ ├── changing_plugins_install_dir.md │ │ ├── how_to_create_plugin.md │ │ ├── managing_plugins_via_cmd_line.md │ │ └── tpm_not_working.md │ │ ├── scripts │ │ ├── check_tmux_version.sh │ │ ├── clean_plugins.sh │ │ ├── helpers │ │ │ ├── plugin_functions.sh │ │ │ ├── shell_echo_functions.sh │ │ │ ├── tmux_echo_functions.sh │ │ │ ├── tmux_utils.sh │ │ │ └── utility.sh │ │ ├── install_plugins.sh │ │ ├── source_plugins.sh │ │ ├── update_plugin.sh │ │ ├── update_plugin_prompt_handler.sh │ │ └── variables.sh │ │ ├── tests │ │ ├── expect_failed_plugin_download │ │ ├── expect_successful_clean_plugins │ │ ├── expect_successful_multiple_plugins_download │ │ ├── expect_successful_plugin_download │ │ ├── expect_successful_update_of_a_single_plugin │ │ ├── expect_successful_update_of_all_plugins │ │ ├── helpers │ │ │ └── tpm.sh │ │ ├── test_plugin_clean.sh │ │ ├── test_plugin_installation.sh │ │ ├── test_plugin_installation_legacy.sh │ │ ├── test_plugin_sourcing.sh │ │ └── test_plugin_update.sh │ │ └── tpm ├── renew_env.sh ├── tmux.remote.conf └── yank.sh ├── .yabairc ├── .zshrc ├── LICENSE ├── Library └── Application Support │ ├── code │ └── user │ │ ├── keybindings.json │ │ └── settings.json │ └── Übersicht │ └── widgets │ └── list ├── README.md ├── SwiftBar ├── Package.4h.sh └── yabai.1d.sh ├── Wallpapers ├── Big-Nord-BG.png └── Big-Nord.png └── images ├── Screen Shot 2021-04-14 at T02.57.29.png ├── Screen Shot 2021-04-14 at T03.33.21.png └── Screen Shot 2021-04-14 at T04.33.05.png /.config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/karabiner/karabiner.json -------------------------------------------------------------------------------- /.config/sketchybar/plugins/airpods_battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/airpods_battery.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/brightness.sh: -------------------------------------------------------------------------------- 1 | LABEL=$(brightness -l | awk 'NR==2 {printf("%02.0f", $4*100)}')% 2 | 3 | sketchybar -m --set $NAME label=$LABEL -------------------------------------------------------------------------------- /.config/sketchybar/plugins/clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/clock.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/cpu.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/cpu_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/cpu_graph.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/disk.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/dndIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/dndIndicator.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/gitNotifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/gitNotifications.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/githubIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/githubIndicator.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/hide_bar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/hide_bar.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/io_speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/io_speed.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/mailIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/mailIndicator.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/messages.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/music.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/music.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/music_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/music_click.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/net.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/network.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/network_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/network_graph.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/package_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/package_monitor.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/power.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/power.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/ram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/ram.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/space.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/spotifyIndicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/spotifyIndicator.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/test.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.config/sketchybar/plugins/topmem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/topmem.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/topproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/topproc.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/volume.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/vpn.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/weather.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/yabai_float.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/yabai_float.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/yabai_float_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/yabai_float_click.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/yabai_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/yabai_mode.sh -------------------------------------------------------------------------------- /.config/sketchybar/plugins/yabai_mode_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/plugins/yabai_mode_click.sh -------------------------------------------------------------------------------- /.config/sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.config/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /.doom.d/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.doom.d/config.el -------------------------------------------------------------------------------- /.doom.d/custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.doom.d/custom.el -------------------------------------------------------------------------------- /.doom.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.doom.d/init.el -------------------------------------------------------------------------------- /.doom.d/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.doom.d/packages.el -------------------------------------------------------------------------------- /.hammerspoon/Spoons/KSheet.spoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/Spoons/KSheet.spoon.zip -------------------------------------------------------------------------------- /.hammerspoon/Spoons/MenuHammer.spoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/Spoons/MenuHammer.spoon.zip -------------------------------------------------------------------------------- /.hammerspoon/Spoons/MouseCircle.spoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/Spoons/MouseCircle.spoon.zip -------------------------------------------------------------------------------- /.hammerspoon/Spoons/Shade.spoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/Spoons/Shade.spoon.zip -------------------------------------------------------------------------------- /.hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/init.lua -------------------------------------------------------------------------------- /.hammerspoon/menuHammerCustomConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/menuHammerCustomConfig.lua -------------------------------------------------------------------------------- /.hammerspoon/slowq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/slowq.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/README.md -------------------------------------------------------------------------------- /.hammerspoon/stackline/bin/yabai-get-stack-idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/bin/yabai-get-stack-idx -------------------------------------------------------------------------------- /.hammerspoon/stackline/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/conf.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/lib/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/lib/debug.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/lib/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/lib/json.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/lib/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/lib/utils.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/lib/valid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/lib/valid.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/configmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/configmanager.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/query.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/query.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/stack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/stack.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/stackline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/stackline.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/stackmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/stackmanager.lua -------------------------------------------------------------------------------- /.hammerspoon/stackline/stackline/window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.hammerspoon/stackline/stackline/window.lua -------------------------------------------------------------------------------- /.limelightrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.limelightrc -------------------------------------------------------------------------------- /.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.p10k.zsh -------------------------------------------------------------------------------- /.scripts/.border: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.border -------------------------------------------------------------------------------- /.scripts/.gaps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.gaps -------------------------------------------------------------------------------- /.scripts/.hide_bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.hide_bar -------------------------------------------------------------------------------- /.scripts/.space_change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.space_change -------------------------------------------------------------------------------- /.scripts/.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.terminal -------------------------------------------------------------------------------- /.scripts/.uber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/.uber -------------------------------------------------------------------------------- /.scripts/Unused/toggle_monocle_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/Unused/toggle_monocle_mode -------------------------------------------------------------------------------- /.scripts/Unused/undock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/Unused/undock.sh -------------------------------------------------------------------------------- /.scripts/color-scripts/.random-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/.random-color -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/alpha -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/arch -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/blocks1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/blocks1 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/blocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/blocks2 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/bloks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/bloks -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/colorbars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/colorbars -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/colortest -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/colortest-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/colortest-slim -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/colorview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/colorview -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/colorwheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/colorwheel -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/crunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/crunch -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/crunchbang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/crunchbang -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/crunchbang-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/crunchbang-mini -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/darthvader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/darthvader -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/dotx -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/elfman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/elfman -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/faces -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/fade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/fade -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/ghosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/ghosts -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/illumina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/illumina -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/jangofett: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/jangofett -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/monster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/monster -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/mouseface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/mouseface -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/mouseface2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/mouseface2 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/bars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/bars -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/crowns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/crowns -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/dna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/dna -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/guns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/guns -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/hex -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/hex-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/hex-block -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/pacman -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/panes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/panes -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/pipes1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/pipes1 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/pipes2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/pipes2 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/pipes2-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/pipes2-slim -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/space-invaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/space-invaders -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/spectrum -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/not-working/zwaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/not-working/zwaves -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/pinguco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/pinguco -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/pukeskull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/pukeskull -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/rails -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/rally-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/rally-x -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/rupees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/rupees -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/spectrum -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/square -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/tanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/tanks -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/thebat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/thebat -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/thebat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/thebat2 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/tiefighter1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/tiefighter1 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/tiefighter1-no-invo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/tiefighter1-no-invo -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/tiefighter1row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/tiefighter1row -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/tiefighter2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/tiefighter2 -------------------------------------------------------------------------------- /.scripts/color-scripts/color-scripts/unowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/color-scripts/unowns.py -------------------------------------------------------------------------------- /.scripts/color-scripts/test-color-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/test-color-support/README.md -------------------------------------------------------------------------------- /.scripts/color-scripts/test-color-support/ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/test-color-support/ansi -------------------------------------------------------------------------------- /.scripts/color-scripts/test-color-support/color-support1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/test-color-support/color-support1.pl -------------------------------------------------------------------------------- /.scripts/color-scripts/test-color-support/color-support2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/test-color-support/color-support2 -------------------------------------------------------------------------------- /.scripts/color-scripts/test-color-support/print-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.scripts/color-scripts/test-color-support/print-colors.py -------------------------------------------------------------------------------- /.skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.skhdrc -------------------------------------------------------------------------------- /.spacevim.d/init.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.spacevim.d/init.toml -------------------------------------------------------------------------------- /.tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/.tmux.conf -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/battery.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/battery.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier1.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier2.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier3.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier4.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier5.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier6.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier7.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_charging_tier8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_charging_tier8.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier1.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier2.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier3.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier4.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier5.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier6.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier7.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_discharging_tier8.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_status_attached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_status_attached.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/screenshots/battery_status_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/screenshots/battery_status_unknown.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_color.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_color_charge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_color_charge.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_color_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_color_status.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_graph.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_icon.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_icon_charge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_icon_charge.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_icon_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_icon_status.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_percentage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_percentage.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_remain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_remain.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_status_bg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_status_bg.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/battery_status_fg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/battery_status_fg.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-battery/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-battery/scripts/helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/Vagrantfile -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/copycat.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/copycat.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/docs/customizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/docs/customizations.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/docs/defining_new_stored_searches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/docs/defining_new_stored_searches.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/docs/installation_for_tmux_2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/docs/installation_for_tmux_2.3.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/docs/limitations.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/run-tests -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_generate_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_generate_results.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_git_special.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_git_special.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_jump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_jump.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_mode_bindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_mode_bindings.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_mode_quit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_mode_quit.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_mode_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_mode_start.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/copycat_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/copycat_search.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/stored_search_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/stored_search_helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/scripts/variables.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/expect_copycat_assertions.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/expect_copycat_assertions.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/expect_copycat_helpers.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/expect_copycat_helpers.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/expect_helpers.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/expect_helpers.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/run_tmux.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/run_tmux.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/setup.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/setup.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/setup_tmux_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/setup_tmux_conf.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/setup_tmux_conf_with_custom_searches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/setup_tmux_conf_with_custom_searches.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/setup_with_custom_searches.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/setup_with_custom_searches.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/helpers/test.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/helpers/test.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/run-tests-within-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/run-tests-within-vm -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_digit_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_digit_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_file_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_file_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_free_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_free_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_git_hash_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_git_hash_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_git_status_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_git_status_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_url_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_url_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/test/test_user_defined_search.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/test/test_user_defined_search.exp -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/vagrant_ubuntu_provisioning_two_five.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/vagrant_ubuntu_provisioning_two_five.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/video/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/video/screencast_img.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-copycat/video/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-copycat/video/script.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/online_status.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/online_status.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/screenshots/offline_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/screenshots/offline_indicator.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/screenshots/offline_indicator_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/screenshots/offline_indicator_linux.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/screenshots/online_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/screenshots/online_indicator.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/screenshots/online_indicator_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/screenshots/online_indicator_linux.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/scripts/online_status_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/scripts/online_status_icon.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-online-status/scripts/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-online-status/scripts/shared.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/open.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/open.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/scripts/helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/scripts/tmux_open_error_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/scripts/tmux_open_error_message.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/video/screencast_img.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-open/video/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-open/video/script.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/LICENSE -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/readme.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/screenshots/cpu_thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/screenshots/cpu_thresholds.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/screenshots/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/screenshots/intro.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/cpu.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/cpu_collect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/cpu_collect.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/loadavg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/loadavg.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/mem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/mem.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/scripts/swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/scripts/swap.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-plugin-sysstat/sysstat.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-plugin-sysstat/sysstat.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-prefix-highlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-prefix-highlight/LICENSE -------------------------------------------------------------------------------- /.tmux/plugins/tmux-prefix-highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-prefix-highlight/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-prefix-highlight/prefix_highlight.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-prefix-highlight/prefix_highlight.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_off.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_on.png -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/docs/options.md -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/screenshot.gif -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/custom_tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/custom_tree.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/save_sidebar_width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/save_sidebar_width.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/toggle.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/tree_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/tree_helpers.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/scripts/variables.sh -------------------------------------------------------------------------------- /.tmux/plugins/tmux-sidebar/sidebar.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tmux-sidebar/sidebar.tmux -------------------------------------------------------------------------------- /.tmux/plugins/tpm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/CHANGELOG.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/HOW_TO_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/HOW_TO_PLUGIN.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/LICENSE.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/README.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bin/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bin/clean_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bin/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bin/install_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bin/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bin/update_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bindings/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bindings/clean_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bindings/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bindings/install_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/bindings/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/bindings/update_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/docs/automatic_tpm_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/docs/automatic_tpm_installation.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/docs/changing_plugins_install_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/docs/changing_plugins_install_dir.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/docs/how_to_create_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/docs/how_to_create_plugin.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/docs/tpm_not_working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/docs/tpm_not_working.md -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/clean_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/clean_plugins.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/helpers/plugin_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/helpers/plugin_functions.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/helpers/tmux_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/helpers/tmux_utils.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/helpers/utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/helpers/utility.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/install_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/install_plugins.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/source_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/source_plugins.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/update_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/update_plugin.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/scripts/variables.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_failed_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_failed_plugin_download -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_successful_clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_successful_clean_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_successful_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_successful_plugin_download -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/helpers/tpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/helpers/tpm.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/test_plugin_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/test_plugin_clean.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/test_plugin_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/test_plugin_installation.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/test_plugin_sourcing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tests/test_plugin_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tests/test_plugin_update.sh -------------------------------------------------------------------------------- /.tmux/plugins/tpm/tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/plugins/tpm/tpm -------------------------------------------------------------------------------- /.tmux/renew_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/renew_env.sh -------------------------------------------------------------------------------- /.tmux/tmux.remote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/tmux.remote.conf -------------------------------------------------------------------------------- /.tmux/yank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.tmux/yank.sh -------------------------------------------------------------------------------- /.yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.yabairc -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/Application Support/code/user/keybindings.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Library/Application Support/code/user/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/Library/Application Support/code/user/settings.json -------------------------------------------------------------------------------- /Library/Application Support/Übersicht/widgets/list: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /SwiftBar/Package.4h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/SwiftBar/Package.4h.sh -------------------------------------------------------------------------------- /SwiftBar/yabai.1d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/SwiftBar/yabai.1d.sh -------------------------------------------------------------------------------- /Wallpapers/Big-Nord-BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/Wallpapers/Big-Nord-BG.png -------------------------------------------------------------------------------- /Wallpapers/Big-Nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/Wallpapers/Big-Nord.png -------------------------------------------------------------------------------- /images/Screen Shot 2021-04-14 at T02.57.29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/images/Screen Shot 2021-04-14 at T02.57.29.png -------------------------------------------------------------------------------- /images/Screen Shot 2021-04-14 at T03.33.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/images/Screen Shot 2021-04-14 at T03.33.21.png -------------------------------------------------------------------------------- /images/Screen Shot 2021-04-14 at T04.33.05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SxC97/dotfiles/HEAD/images/Screen Shot 2021-04-14 at T04.33.05.png --------------------------------------------------------------------------------