[bugfix] ...

This commit is contained in:
Klesh Wong 2020-09-19 09:23:38 +08:00
parent 0ba89c7f04
commit 75b0f359c8
6 changed files with 35 additions and 5 deletions

View File

@ -19,5 +19,20 @@ esac
sudo systemctl enable docker sudo systemctl enable docker
sudo systemctl start docker sudo systemctl start docker
# configuration # configuration
sudo usermod -aG docker $USER sudo usermod -aG docker $USER
if [ -d /etc/docker ]; then
dj='{}'
if [ -f /etc/docker/daemon.json ]; then
# backup
[ ! -f /etc/docker/daemon.bak.json ] && \
sudo cp /etc/docker/daemon.json /etc/docker/daemon.bak.json
# read
dj=$(cat /etc/docker/daemon.json)
fi
echo $dj | jq '. + {"registry-mirrors": ["https://izuhlbap.mirror.aliyuncs.com"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
fi

View File

@ -26,6 +26,11 @@ case "$PM" in
echo 'Unsupported release' echo 'Unsupported release'
exit -1 exit -1
fi fi
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
sudo apt update
sudo apt install -y nvidia-docker2
;; ;;
pacman) pacman)
echo TODO echo TODO

View File

@ -90,6 +90,7 @@ Plug 'editorconfig/editorconfig-vim'
Plug 'tpope/vim-surround' Plug 'tpope/vim-surround'
Plug 'jiangmiao/auto-pairs' Plug 'jiangmiao/auto-pairs'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'posva/vim-vue'
"Plug 'neoclide/coc.nvim', {'branch': 'release'} "Plug 'neoclide/coc.nvim', {'branch': 'release'}
"Plug 'neoclide/coc-json', {'do': 'yarnpkg install --frozen-lockfile'} "Plug 'neoclide/coc-json', {'do': 'yarnpkg install --frozen-lockfile'}
"Plug 'iamcco/coc-vimlsp', {'do': 'yarnpkg install --frozen-lockfile'} "Plug 'iamcco/coc-vimlsp', {'do': 'yarnpkg install --frozen-lockfile'}

View File

@ -14,6 +14,10 @@ case "$PM" in
;; ;;
esac esac
# enable for current user
systemctl --user enable mpd
systemctl --user start mpd
# symlink configuration # symlink configuration
lnsf $DIR/config/mpd ~/.config/mpd lnsf $DIR/config/mpd ~/.config/mpd
lnsf $DIR/config/ncmpcpp ~/.config/ncmpcpp lnsf $DIR/config/ncmpcpp ~/.config/ncmpcpp

View File

@ -4,9 +4,11 @@
function update function update
set -x text set -x text
# mpd # mpd
set music (mpc) if which mpc
if string match -r playing "$music[2]" set music (mpc)
set text $text "喇 $music[1]" if string match -r playing "$music[2]"
set text $text "喇 $music[1]"
end
end end
# volume # volume
set vol (amixer get Master) set vol (amixer get Master)
@ -36,7 +38,7 @@ function update
set text $text " $cpu" set text $text " $cpu"
end end
# battery # battery
set battery (cat /sys/class/power_supply/BAT0/capacity 2>/dev/null || -1) set battery (cat /sys/class/power_supply/BAT0/capacity 2>/dev/null || echo "-1")
if test "$battery" -gt -1 if test "$battery" -gt -1
set plugged (cat /sys/class/power_supply/AC/online) set plugged (cat /sys/class/power_supply/AC/online)
if test "$plugged" -eq 1 if test "$plugged" -eq 1

View File

@ -15,9 +15,11 @@ case "$PM" in
xorg libx11-dev libxft-dev libxinerama-dev \ xorg libx11-dev libxft-dev libxinerama-dev \
libxrandr-dev arandr autorandr \ libxrandr-dev arandr autorandr \
ibus ibus-table ibus-table-wubi \ ibus ibus-table ibus-table-wubi \
pavucontrol \
gnome-keyring \ gnome-keyring \
xss-lock \ xss-lock \
nitrogen \ nitrogen \
lm-sensors \
trayer trayer
sudo apt remove gdm3 sudo apt remove gdm3
;; ;;
@ -30,6 +32,7 @@ case "$PM" in
gnome-keyring \ gnome-keyring \
xss-lock \ xss-lock \
nitrogen \ nitrogen \
lm-sensors \
trayer trayer
;; ;;
esac esac
@ -83,4 +86,4 @@ EOT
# config dwm # config dwm
lnsf $DIR/config ~/.config/dwm lnsf $DIR/config ~/.config/dwm