Compare commits

...

2 Commits

Author SHA1 Message Date
a828cfb987
zshrc: changed a timestamp message 2025-01-31 00:04:25 +01:00
73b686a5fe
zshrc: added install_winbox_old 2025-01-31 00:04:09 +01:00

View File

@ -291,7 +291,7 @@ function install_fzf() {
cd $CONFIG || err "Folder $CONFIG has been NOT found"
git clone https://github.com/junegunn/fzf.git $FOLDER && timestamp "Cloning the FZF"
cd $FOLDER || err "Folder $FOLDER has been NOT found"
git pull -q && timestamp "Pulling the $FOLDER configuration"
git pull -q && timestamp "Pulled the $FOLDER configuration"
make install
fi
}
@ -477,6 +477,13 @@ function install_brew_programs() {
brew cleanup --prune=all
}
function install_winbox_old() {
curl -o /tmp/winbox64.exe \
"$(curl --silent https://mikrotik.com/download | grep -o 'https:\/\/download.*winbox64.exe')"
mv -v /tmp/winbox64.exe ~/Applications/winbox.exe
xattr -cr ~/Applications/winbox.exe
}
function main() {
command_start update_pip
command_start install_neovim_module_for_python
@ -513,6 +520,7 @@ function main() {
command_start install_precommit
command_start install_streamlink
command_start install_fzf
command_start install_winbox_old
command_start install_zsh_addons
command_start install_brew_programs
}