Compare commits

...

3 Commits

Author SHA1 Message Date
Tri Asep Tumbara
673d27905b
Merge 923129f682a41feec805589c754cac1cc20381d6 into c43f390f07098c42db5efce654b07870951b512a 2024-10-30 22:13:08 +07:00
appeasementPolitik
c43f390f07
Fix sb-price after bash -> dash change (#1426) 2024-10-22 18:47:41 +00:00
Tri Asep Tumbara
923129f682
Change nvim background color to dark mode.
Maybe it's just personal preference, I think it looks better when set to dark mode. It also matches to default theme.
2024-08-10 14:58:48 +07:00
2 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Plug 'ap/vim-css-color'
call plug#end()
set title
set bg=light
set bg=dark
set go=a
set mouse=a
set nohlsearch

View File

@ -28,7 +28,9 @@ filestat="$(stat -c %x "$pricefile" 2>/dev/null)"
[ -d "$dir" ] || mkdir -p "$dir"
updateprice() { curl -sf -m 1 --fail-early $denom.$url/{1$target,$target$interval} --output "$pricefile" --output "$chartfile" ||
updateprice() { curl -sf \
--fail-early "${denom}.${url}/1${target}" "${denom}.${url}/${target}${interval}" \
--output "$pricefile" --output "$chartfile" ||
rm -f "$pricefile" "$chartfile" ;}
[ "${filestat%% *}" != "$(date '+%Y-%m-%d')" ] &&