Merge branch 'master' of https://git.mgrote.net/mg/dotfiles
This commit is contained in:
Michael Grote 2021-06-09 10:57:08 +02:00
commit ded2973881
3 changed files with 4 additions and 3 deletions

3
.vimrc
View file

@ -48,7 +48,8 @@ set encoding=UTF-8
set visualbell
set hlsearch
set smartcase
set gdefault
set gdefault "global bei suche immer mit an"
set nowrap "verhindert zeilenumbrüche
set ignorecase
set incsearch
set autoindent

View file

@ -55,7 +55,7 @@ cursor-scroll = ns-resize
type = custom/script
exec = /home/mg/dotfiles/polybar/nightscout_cgm.sh
interval = 120
format-prefix = "BG"
format-prefix = "BG "
[module/xwindow]
type = internal/xwindow

View file

@ -3,5 +3,5 @@ curl -s -X GET "https://nightscout.mgrote.net/api/v1/entries/sgv?count=1&token=p
if [ $? -ne 0 ]; then
echo "---"
else
curl -s -X GET "https://nightscout.mgrote.net/api/v1/entries/sgv?count=1&token=polybar-ae6fe2720f2c30f4" | awk '{$zw=$3 * 0.0555} {printf "%.1f\n",$zw}'
curl -s -X GET "https://nightscout.mgrote.net/api/v1/entries/sgv?count=1&token=polybar-ae6fe2720f2c30f4" | awk '{printf "%.1f\n",$3*0.0555}'
fi