I hereby claim:
- I am bcatubig on github.
- I am bcatubig (https://keybase.io/bcatubig) on keybase.
- I have a public key ASBnb33d8bf6_dOpQCwgLXGIQVBZPXqUAjx9-3JQiJ-t3Ao
To claim this, I am signing this object:
# Fix Colors | |
set -g default-terminal "screen-256color" | |
set -as terminal-features ",xterm-256color:RGB" | |
# easy reload config | |
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded." | |
# set window split | |
bind-key v split-window -h | |
bind-key b split-window |
I hereby claim:
To claim this, I am signing this object:
module bricks networking after resuming from sleep
either remove the blacklist file
/etc/modprobe.d
❯ sudo rm r8169_blacklist.conf
or run
Citrix completely fucked their Linux users by not testing any of their software. Any version past 13.8 does not work for my use case.
Version: 13.8 https://www.citrix.com/downloads/citrix-receiver/legacy-receiver-for-linux/receiver-for-linux-138.html
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set-option -g mouse on | |
set-option -g prefix C-a | |
bind-key C-a last-window | |
set -g base-index 1 |
source ~/antigen.zsh | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Bundles from the default repo (robbyrussell's oh-my-zsh). | |
antigen bundle git | |
antigen bundle pip | |
antigen bundle command-not-found | |
antigen bundle docker |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set -g @plugin 'tmux-plugins/tmux-battery' | |
set -g @plugin 'arcticicestudio/nord-tmux' | |
set -g @plugin 'nhdaly/tmux-better-mouse-mode' | |
# C-b is not acceptable -- Vim uses it | |
set-option -g prefix C-a | |
bind-key C-a last-window |
# Works with Bash and ZSH | |
# Copy this into your ~/.bashrc or ~/.zshrc | |
# Install Lastpass cli -- https://github.com/lastpass/lastpass-cli | |
# Install sshpass | |
# OSX: $ brew install http://git.io/sshpass.rb | |
# Be sure to change <MYLASTPASS-PASSWORD-ID> in the install_keys() function | |
function install_keys (){ | |
echo "INFO: No SSH Key on server. Grabbing password from lastpass" | |
export SSHPASS=$(lpass show <MYLASTPASS-PASSWORD-ID> --password) | |
/usr/local/bin/sshpass -e ssh-copy-id $1 || return 255 |
#!/usr/bin/env python | |
import subprocess | |
from multiprocessing import Pool | |
from functools import partial | |
import argparse | |
import sys | |
from itertools import chain | |
def execute_playbook(ansible_string, pb): |