Cleanup
This commit is contained in:
parent
c0a8c87681
commit
b4fd0f8481
3 changed files with 0 additions and 49 deletions
|
@ -1,15 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
# Script to disable for an hour or immediately continue wlsunset. 'Toggle'
|
||||
|
||||
# Check if wlsunset is still running
|
||||
pid=$(pgrep wlsunset)
|
||||
|
||||
if [[ -z ${pid} ]] ; then
|
||||
# Start wlsunset right away.
|
||||
wlsunset -l 50 -L 4 -t 2500 &
|
||||
else
|
||||
# Currently stop wlsunset but restart in an hour.
|
||||
kill ${pid}
|
||||
notify-send 'Stopping sunset, restarting in an hour'
|
||||
at now +1 hours -f ~/.scripts/wlsunset.sh
|
||||
fi
|
29
.OLD/.vimrc
29
.OLD/.vimrc
|
@ -1,29 +0,0 @@
|
|||
"
|
||||
" ~/.vimrc
|
||||
"
|
||||
|
||||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
set expandtab
|
||||
set incsearch
|
||||
set number
|
||||
set showmatch
|
||||
set title
|
||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||
syntax on
|
||||
|
||||
" PLUGINS --------------------------------------------------------------- {{{
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'dense-analysis/ale'
|
||||
|
||||
call plug#end()
|
||||
|
||||
" }}}
|
||||
|
||||
if has("autocmd")
|
||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||
endif
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
|
||||
[Default Applications]
|
||||
text/markdown=marktext.desktop
|
||||
x-scheme-handler/jetbrains=jetbrains-toolbox.desktop
|
||||
x-scheme-handler/mailspring=Mailspring.desktop
|
Loading…
Reference in a new issue