configs/roles/config/files/.config/fish/functions/upconf.fish

9 lines
149 B
Fish
Raw Normal View History

2024-10-12 16:29:35 +02:00
# update config
function upconf
2024-10-15 19:18:04 +02:00
pushd (mktemp -d)
2024-10-12 16:29:35 +02:00
git clone https://gitea.exu.li/exu/configs.git
cd configs
just config
2024-10-15 19:18:04 +02:00
popd
2024-10-12 16:29:35 +02:00
end