Compare commits
7 Commits
b49e7ad83d
...
057b0bf93a
Author | SHA1 | Date | |
---|---|---|---|
057b0bf93a
|
|||
954138b1ef
|
|||
75f1174ace
|
|||
c49c8b2a09
|
|||
d6eadbd7b6
|
|||
6cb491d338
|
|||
2079564fe5
|
@@ -3,6 +3,7 @@ coreutils
|
|||||||
dockutil
|
dockutil
|
||||||
duti
|
duti
|
||||||
fastfetch
|
fastfetch
|
||||||
|
ffmpeg
|
||||||
git
|
git
|
||||||
gnu-sed
|
gnu-sed
|
||||||
htop
|
htop
|
||||||
@@ -13,9 +14,11 @@ mtr
|
|||||||
neovim
|
neovim
|
||||||
newsboat
|
newsboat
|
||||||
parallel
|
parallel
|
||||||
|
pinentry-mac
|
||||||
ranger
|
ranger
|
||||||
ripgrep
|
ripgrep
|
||||||
rsync
|
rsync
|
||||||
|
texinfo
|
||||||
tmux
|
tmux
|
||||||
tree
|
tree
|
||||||
wget
|
wget
|
||||||
|
@@ -1,7 +1,9 @@
|
|||||||
alacritty
|
alacritty
|
||||||
|
akiflow
|
||||||
alfred
|
alfred
|
||||||
chatterino
|
chatterino
|
||||||
dbeaver-community
|
dbeaver-community
|
||||||
|
discord
|
||||||
displaylink
|
displaylink
|
||||||
docker
|
docker
|
||||||
firefox@nightly
|
firefox@nightly
|
||||||
@@ -9,33 +11,28 @@ font-hack-nerd-font
|
|||||||
gimp
|
gimp
|
||||||
google-chrome
|
google-chrome
|
||||||
hiddenbar
|
hiddenbar
|
||||||
jordanbaird-ice
|
|
||||||
karabiner-elements
|
karabiner-elements
|
||||||
keepassxc
|
keepassxc
|
||||||
macfuse
|
|
||||||
megasync
|
megasync
|
||||||
microsoft-auto-update
|
|
||||||
microsoft-teams
|
microsoft-teams
|
||||||
mongodb-compass
|
mongodb-compass
|
||||||
mpv
|
mpv
|
||||||
mysides
|
|
||||||
obsidian
|
obsidian
|
||||||
platypus
|
platypus
|
||||||
postman
|
postman
|
||||||
qbittorrent
|
qbittorrent
|
||||||
qview
|
qview
|
||||||
|
rustdesk
|
||||||
scroll-reverser
|
scroll-reverser
|
||||||
signal
|
signal
|
||||||
skype
|
|
||||||
spotify
|
spotify
|
||||||
stats
|
stats
|
||||||
telegram
|
telegram
|
||||||
the-unarchiver
|
the-unarchiver
|
||||||
todoist
|
|
||||||
transfer
|
transfer
|
||||||
twingate
|
twingate
|
||||||
|
visual-studio-code
|
||||||
vlc
|
vlc
|
||||||
winbox
|
winbox
|
||||||
wine-crossover
|
wine-crossover
|
||||||
wireshark
|
wireshark
|
||||||
zed@preview
|
|
||||||
|
@@ -1 +0,0 @@
|
|||||||
/Users/yorune/Library/Application Support/iTerm2
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -279,3 +279,4 @@ Cisco Packet Tracer 8.0.0
|
|||||||
.local/bin/kubectl
|
.local/bin/kubectl
|
||||||
.rustup
|
.rustup
|
||||||
.local/tss-sdk
|
.local/tss-sdk
|
||||||
|
.local/bin/tss
|
||||||
|
@@ -199,6 +199,7 @@ function install_terragrunt() {
|
|||||||
timestamp "The current version of the TSS-SDK is the same as the newest version"
|
timestamp "The current version of the TSS-SDK is the same as the newest version"
|
||||||
return 0
|
return 0
|
||||||
else
|
else
|
||||||
|
brew install wget
|
||||||
wget https://github.com/gruntwork-io/terragrunt/releases/latest/download/terragrunt_linux_amd64 -O $TERRAGRUNT
|
wget https://github.com/gruntwork-io/terragrunt/releases/latest/download/terragrunt_linux_amd64 -O $TERRAGRUNT
|
||||||
chmod +x "$TERRAGRUNT"
|
chmod +x "$TERRAGRUNT"
|
||||||
fi
|
fi
|
||||||
@@ -299,6 +300,8 @@ function install_fzf() {
|
|||||||
function install_zsh_addons() {
|
function install_zsh_addons() {
|
||||||
|
|
||||||
if [ ! -d $ZSHFOLDER/aws ]; then
|
if [ ! -d $ZSHFOLDER/aws ]; then
|
||||||
|
mkdir -p "$ZSHFOLDER/azure-cli" "$ZSHFOLDER/aws"
|
||||||
|
|
||||||
curl -s https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/aws/aws.plugin.zsh \
|
curl -s https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/aws/aws.plugin.zsh \
|
||||||
-o "$ZSHFOLDER"/aws/aws.plugin.zsh &&
|
-o "$ZSHFOLDER"/aws/aws.plugin.zsh &&
|
||||||
timestamp "Downloaded the newest version of aws plugin for zsh"
|
timestamp "Downloaded the newest version of aws plugin for zsh"
|
||||||
@@ -307,7 +310,6 @@ function install_zsh_addons() {
|
|||||||
-o "$ZSHFOLDER"/azure-cli/az.completion &&
|
-o "$ZSHFOLDER"/azure-cli/az.completion &&
|
||||||
timestamp "Downloaded the newest version of az plugin for zsh"
|
timestamp "Downloaded the newest version of az plugin for zsh"
|
||||||
|
|
||||||
mkdir -p "$ZSHFOLDER/azure-cli" "$ZSHFOLDER/aws"
|
|
||||||
cd $ZSHFOLDER || err "Folder $ZSHFOLDER has been NOT found"
|
cd $ZSHFOLDER || err "Folder $ZSHFOLDER has been NOT found"
|
||||||
git clone https://github.com/popstas/zsh-command-time.git &&
|
git clone https://github.com/popstas/zsh-command-time.git &&
|
||||||
timestamp "Cloning the zsh-command-time"
|
timestamp "Cloning the zsh-command-time"
|
||||||
|
@@ -1 +0,0 @@
|
|||||||
/usr/local/bin/yt-dlp
|
|
Reference in New Issue
Block a user