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 colors for active vs inactive windows | |
hi ActiveWindow guibg=#17252c | |
hi InactiveWindow guibg=#0D1B22 | |
" Call method on window enter | |
augroup WindowManagement | |
autocmd! | |
autocmd WinEnter * call Handle_Win_Enter() | |
augroup END |
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 colors for active vs inactive windows | |
hi ActiveWindow guibg=#17252c | |
hi InactiveWindow guibg=#0D1B22 | |
hi ActiveTerminal guibg=#333333 | |
" Call method on window enter | |
augroup WindowManagement | |
autocmd! | |
autocmd WinEnter * call Handle_Win_Enter() | |
augroup END |
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 | |
# ==USER== | |
user=$(whoami) | |
# ==HOSTNAME== | |
hostname=$(HOSTNAME | sed 's/.local//g') | |
# if hostname is >35 characters, truncates to make it fit on std. 80 window | |
if [ ${#HOSTNAME} -gt 35 ] | |
then |
NewerOlder