- Any particular fields of the CR we could check for misconfigurations?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
TIMEOUT="$1" # timeout per ssh attempt in seconds. e.g. 30, 60, etc. | |
SSHPREFIX="$2" # ssh prefix to try (ssh <prefix>@<ip>) e.g. ubuntu, root, etc. | |
if [ -z "$TIMEOUT" ]; then | |
TIMEOUT=30 | |
fi | |
if [ -z "$SSHPREFIX" ]; then | |
SSHPREFIX="ubuntu" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
dmenu = /usr/bin/rofi -dmenu -p dunst | |
mouse_left_click = do_action | |
mouse_middle_click = close_current | |
mouse_right_click = close_all | |
font = Monospace 11 | |
[urgency_low] | |
background = "#1e1e2e" | |
foreground = "#cdd6f4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see https://i3wm.org/docs/userguide.html for a complete reference! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap Q gq | |
let mapleader = " " | |
let maplocalleader = " " | |
set scrolloff=5 | |
set hlsearch | |
set incsearch | |
set smartindent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set clipboard+=unnamedplus | |
map Q gq | |
let mapleader = " " | |
let maplocalleader = " " | |
set scrolloff=5 | |
set hls is | |
set smartindent | |
set autoindent | |
set expandtab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option -g default-terminal "tmux-256color" | |
set-option -g status-style bg=default,fg=white | |
set-option -g window-style bg=default | |
set-option -g window-active-style bg=default | |
set -g status-left "[#S]: " | |
set -g status-left-style bg=#000000,fg=grey,bold | |
set -g status-left-length 50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background = #000000 | |
foreground = #CECECE | |
window-padding-x = 0 | |
window-padding-y = 0 | |
window-decoration = none | |
background-opacity = 0.88 | |
font-size = 11 | |
confirm-close-surface = false | |
scrollback-limit = 268435456 |