i can clean these up sometime
This commit is contained in:
parent
3bf4798db1
commit
44d79a46e6
6 changed files with 54 additions and 32 deletions
|
@ -18,31 +18,31 @@ window:
|
||||||
padding:
|
padding:
|
||||||
x: 10
|
x: 10
|
||||||
y: 10
|
y: 10
|
||||||
opacity: 0.85
|
opacity: 0.9
|
||||||
|
|
||||||
colors:
|
colors:
|
||||||
primary:
|
primary:
|
||||||
background: '#121212'
|
background: '#282828'
|
||||||
|
|
||||||
normal:
|
normal:
|
||||||
black: '#1D1F21'
|
black: '#282828'
|
||||||
red: '#DD0000'
|
red: '#cc241d'
|
||||||
green: '#00CB07'
|
green: '#98971a'
|
||||||
yellow: '#F0E100'
|
yellow: '#d79921'
|
||||||
blue: '#0E60E5'
|
blue: '#458588'
|
||||||
magenta: '#980AE0'
|
magenta: '#b16286'
|
||||||
cyan: '#34D9FF'
|
cyan: '#689d6a'
|
||||||
white: '#A8A8A8'
|
white: '#a89984'
|
||||||
|
|
||||||
bright:
|
bright:
|
||||||
black: '#434343'
|
black: '#928374'
|
||||||
red: '#F77021'
|
red: '#fb4934'
|
||||||
green: '#2EFF25'
|
green: '#b8bb26'
|
||||||
yellow: '#FDF259'
|
yellow: '#fabd2f'
|
||||||
blue: '#4F9BFF'
|
blue: '#83a598'
|
||||||
magenta: '#EE3AD8'
|
magenta: '#d3869b'
|
||||||
cyan: '#56FFFB'
|
cyan: '#8ec07c'
|
||||||
white: '#FFFFFF'
|
white: '#ebdbb2'
|
||||||
|
|
||||||
# Colors (Nord)
|
# Colors (Nord)
|
||||||
#colors:
|
#colors:
|
||||||
|
|
19
bash/.bashrc
19
bash/.bashrc
|
@ -39,6 +39,7 @@ alias todo='vim ~/TODO.md'
|
||||||
alias iPhone='cd /home/bryson/Downloads/from-iPhone'
|
alias iPhone='cd /home/bryson/Downloads/from-iPhone'
|
||||||
|
|
||||||
alias gs='gs -dNOSAFER'
|
alias gs='gs -dNOSAFER'
|
||||||
|
alias django='python manage.py'
|
||||||
|
|
||||||
alias smci='sudo make clean install'
|
alias smci='sudo make clean install'
|
||||||
#discord_gpu() {
|
#discord_gpu() {
|
||||||
|
@ -104,6 +105,13 @@ color2='\e[38;5;81m'
|
||||||
color3='\e[38;5;77m'
|
color3='\e[38;5;77m'
|
||||||
color4='\e[38;5;226m'
|
color4='\e[38;5;226m'
|
||||||
|
|
||||||
|
function exit_code() {
|
||||||
|
local ERROR="$?"
|
||||||
|
if [[ ERROR -ne 0 ]]; then
|
||||||
|
echo -n ' \['"$RED"'\]'"$ERROR"''
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# Taken from http://www.opinionatedprogrammer.com/2011/01/colorful-bash-prompt-reflecting-git-status/
|
# Taken from http://www.opinionatedprogrammer.com/2011/01/colorful-bash-prompt-reflecting-git-status/
|
||||||
function _git_prompt() {
|
function _git_prompt() {
|
||||||
local git_status="`git status -unormal 2>&1`"
|
local git_status="`git status -unormal 2>&1`"
|
||||||
|
@ -154,14 +162,15 @@ function get_random_ps1() {
|
||||||
#export _PS1="\[$dgray\][ \[$GREEN\]\u\[$lgray\]@\[$LRED\]\h\[$dgray\] ] { \[$LCYAN\]\w\[$dgray\] } "
|
#export _PS1="\[$dgray\][ \[$GREEN\]\u\[$lgray\]@\[$LRED\]\h\[$dgray\] ] { \[$LCYAN\]\w\[$dgray\] } "
|
||||||
# xterm color thing
|
# xterm color thing
|
||||||
#export _PS1="\[\e[1m$color1\]\u\[$color2\]@\[$color3\]\h \[$color4\]\w \[$color3\]\@ \[$color2\]\s "
|
#export _PS1="\[\e[1m$color1\]\u\[$color2\]@\[$color3\]\h \[$color4\]\w \[$color3\]\@ \[$color2\]\s "
|
||||||
export _PS1="\[$lgray\][ \[\e[1m$color1\]\u\[$color2\]@\[$color3\]\h \[$color4\]\w \[\e[0m$lgray\]]"
|
#export _PS1="\[$lgray\][ \[\e[1m$color1\]\u\[$color2\]@\[$color3\]\h \[$color4\]\w \[\e[0m$lgray\]]"
|
||||||
|
export _PS1="\[$lgray\][ \[$LBLUE\]\u\[$lcyan\]@\[$GREEN\]\h \[$LYELLOW\]\w \[$lgray\]]"
|
||||||
export _PS2="\[$dgray\]"
|
export _PS2="\[$dgray\]"
|
||||||
#export _PS1=" \u \`pwd\`"
|
#export _PS1=" \u \`pwd\`"
|
||||||
#export _PS2=""
|
#export _PS2=""
|
||||||
export PROMPT_COMMAND='export PS1="$TITLEBAR${_status}${_PS1}$(_git_prompt)\n${_PS2}\[$NC\]\$ "'
|
export PROMPT_COMMAND='export PS1="$TITLEBAR${_status}${_PS1}$(exit_code)$(_git_prompt)\n${_PS2}\[$NC\]\$ "'
|
||||||
|
|
||||||
. $HOME/.asdf/asdf.sh
|
#. $HOME/.asdf/asdf.sh
|
||||||
. $HOME/.asdf/completions/asdf.bash
|
#. $HOME/.asdf/completions/asdf.bash
|
||||||
|
|
||||||
# run startup script if tty
|
# run startup script if tty
|
||||||
if [[ $TERM == 'linux' && $(hostname) == 'dingo' ]]; then
|
if [[ $TERM == 'linux' && $(hostname) == 'dingo' ]]; then
|
||||||
|
@ -174,7 +183,7 @@ if [[ $TERM == 'linux' && $(hostname) == 'dingo' ]]; then
|
||||||
while read -rs -N 1 key; do
|
while read -rs -N 1 key; do
|
||||||
case $key in
|
case $key in
|
||||||
d) startx ;;
|
d) startx ;;
|
||||||
n) nstartx ;;
|
n) nstartx.sh ;;
|
||||||
q) echo "Are you sure you want to shutdown? (y/n)";
|
q) echo "Are you sure you want to shutdown? (y/n)";
|
||||||
read -rs -N 1 key2; case $key2 in y) shutdown now ;; esac; ;;
|
read -rs -N 1 key2; case $key2 in y) shutdown now ;; esac; ;;
|
||||||
r) echo "Are you sure you want to reboot? (y/n)";
|
r) echo "Are you sure you want to reboot? (y/n)";
|
||||||
|
|
2
dwm
2
dwm
|
@ -1 +1 @@
|
||||||
Subproject commit ab3f787725dc78cb9ae73c47d40e00be0a6b2159
|
Subproject commit 83ef57559adfeb584ff3fac36a2135283df0b44a
|
23
vim/.vimrc
23
vim/.vimrc
|
@ -1,7 +1,9 @@
|
||||||
set nocompatible
|
set nocompatible
|
||||||
colorscheme sitruuna
|
let g:gruvbox_guisp_fallback = "bg"
|
||||||
|
colorscheme gruvbox
|
||||||
|
set bg:dark
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set tabstop=4 shiftwidth=4 expandtab
|
set tabstop=2 softtabstop=2 shiftwidth=2 expandtab
|
||||||
set linebreak
|
set linebreak
|
||||||
set ttymouse=sgr
|
set ttymouse=sgr
|
||||||
set cursorline
|
set cursorline
|
||||||
|
@ -10,10 +12,14 @@ set laststatus=2
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set scrolloff=5
|
set scrolloff=5
|
||||||
set incsearch
|
set incsearch
|
||||||
|
set relativenumber
|
||||||
|
set ttimeout ttimeoutlen=25
|
||||||
|
|
||||||
" turn on spell checker for all markdown files
|
" turn on spell checker for all markdown files
|
||||||
autocmd FileType markdown setlocal spell
|
autocmd FileType markdown setlocal spell
|
||||||
|
|
||||||
|
execute pathogen#infect()
|
||||||
|
|
||||||
" stolen from https://shapeshed.com/vim-statuslines/
|
" stolen from https://shapeshed.com/vim-statuslines/
|
||||||
"function! GitBranch()
|
"function! GitBranch()
|
||||||
" return system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
|
" return system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
|
||||||
|
@ -61,8 +67,15 @@ set statusline+=\ %l/%L:%c
|
||||||
set statusline+=\
|
set statusline+=\
|
||||||
|
|
||||||
|
|
||||||
hi StatusLine ctermbg=black
|
"hi StatusLine ctermbg=black
|
||||||
hi Normal ctermbg=NONE
|
hi Normal ctermbg=NONE
|
||||||
let g:lightline = {
|
let g:lightline = {
|
||||||
\ 'colorscheme': 'sitruuna',
|
\ 'colorscheme': 'gruvbox',
|
||||||
\ }
|
\ 'active': {
|
||||||
|
\ 'left': [ [ 'mode', 'paste' ],
|
||||||
|
\ [ 'filename', 'readonly', 'modified' ] ],
|
||||||
|
\ 'right': [ [ 'lineinfo' ],
|
||||||
|
\ [ 'fileformat', 'fileencoding', 'filetype' ] ]
|
||||||
|
\ },
|
||||||
|
\ }
|
||||||
|
set noshowmode
|
||||||
|
|
|
@ -51,7 +51,7 @@ pacmd set-default-sink alsa_output.usb-0c76_USB_PnP_Audio_Device-00.analog-stere
|
||||||
slstatus &
|
slstatus &
|
||||||
|
|
||||||
# set up wallpapers
|
# set up wallpapers
|
||||||
wallpapers &
|
wallpapers.sh &
|
||||||
|
|
||||||
# start notifications daemon
|
# start notifications daemon
|
||||||
notification-daemon &
|
notification-daemon &
|
||||||
|
|
|
@ -44,14 +44,14 @@ picom -CG -I 0.1 -O 0.1 -o 0.0 --backend xrender --menu-opacity 1.0 &
|
||||||
slstatus-not-docked &
|
slstatus-not-docked &
|
||||||
|
|
||||||
# reset backlight
|
# reset backlight
|
||||||
xbacklight -set 50 &
|
xbacklight -set 25 &
|
||||||
|
|
||||||
# set default audio device to be laptop speakers
|
# set default audio device to be laptop speakers
|
||||||
pacmd set-default-sink alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink &
|
pacmd set-default-sink alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink &
|
||||||
pacmd set-sink-volume alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink 0 &
|
pacmd set-sink-volume alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink 0 &
|
||||||
|
|
||||||
# set up wallpaper
|
# set up wallpaper
|
||||||
nitrogen --head=0 --set-zoom-fill ~/Pictures/Wallpapers/yosemite-edit.jpg &
|
nitrogen --head=0 --set-zoom-fill ~/Pictures/Wallpapers/white-yosemite-edit.jpg &
|
||||||
|
|
||||||
# start notifications daemon
|
# start notifications daemon
|
||||||
notification-daemon &
|
notification-daemon &
|
||||||
|
|
Loading…
Add table
Reference in a new issue