View config
This file contains 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! |
View server-config.sh
This file contains 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 | |
sudo apt update | |
sudo apt upgrade -y | |
sudo reboot | |
sudo ufw enable && sudo ufw allow ssh | |
sudo apt install nginx | |
sudo ufw allow 'Nginx HTTP' |
View Xresource
This file contains 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
Xft.dpi: 96 | |
i3-wm.gaps.inner.size: 15 | |
gnome.wallpaper: ~/Pictures/wallhaven-zmr6qv.png | |
i3-wm.bar.trayoutput: primary | |
i3-wm.bar.workspace.focused.background.color: #ff8080 | |
i3-wm.bar.workspace.focused.border.color: #ff8080 | |
i3-wm.bar.workspace.urgent.background.color: #ffe9aa | |
i3-wm.bar.workspace.urgent.border.color: #ffe9aa | |
i3-wm.bar.workspace.active.background.color: #cbe3e7 | |
i3-wm.bar.workspace.active.border.color: #cbe3e7 |
View .vimrc
This file contains 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
call plug#begin('~/.vim/plugged') | |
Plug 'challenger-deep-theme/vim', { 'as': 'challenger-deep' } | |
Plug 'morhetz/gruvbox' | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'junegunn/fzf.vim' | |
Plug 'stsewd/fzf-checkout.vim' | |
Plug 'sheerun/vim-polyglot' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' |