Adds bootstrap.v2
This commit is contained in:
parent
06c8003cf2
commit
2bbccb4595
61 changed files with 468 additions and 4 deletions
5
.config/yadm/bootstrap.v2/actions/30-KDEConnect.sh
Executable file
5
.config/yadm/bootstrap.v2/actions/30-KDEConnect.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/env sh
|
||||
|
||||
sudo firewall-cmd --permanent --add-port=1714-1764/{tcp,udp}
|
||||
|
||||
echo "-- For some reason, its recommended to reboot your device to make kdeconnect work..."
|
||||
3
.config/yadm/bootstrap.v2/actions/30-MimeDefaults.sh
Executable file
3
.config/yadm/bootstrap.v2/actions/30-MimeDefaults.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/env sh
|
||||
|
||||
xdg-mime default vimiv.desktop image/{png,jpeg}
|
||||
3
.config/yadm/bootstrap.v2/actions/30-Yazi.sh.bak
Executable file
3
.config/yadm/bootstrap.v2/actions/30-Yazi.sh.bak
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/env sh
|
||||
|
||||
ya pack --install
|
||||
5
.config/yadm/bootstrap.v2/actions/30-Zsh.sh
Executable file
5
.config/yadm/bootstrap.v2/actions/30-Zsh.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/env sh
|
||||
|
||||
chsh -s $(which zsh)
|
||||
|
||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --keep-zshrc --unattended || exit 0
|
||||
21
.config/yadm/bootstrap.v2/actions/40-GitRepositories.sh
Executable file
21
.config/yadm/bootstrap.v2/actions/40-GitRepositories.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/env sh
|
||||
|
||||
declare -A repositories
|
||||
|
||||
repositories['DSA']="ssh://git.php.fail/neintonine/dsa.git"
|
||||
repositories['Notes']="ssh://git.php.fail/neintonine/notes.git"
|
||||
repositories['gameconcepts']="ssh://git.php.fail/neintonine/game-concepts.git"
|
||||
|
||||
for path in "${!repositories[@]}"; do
|
||||
url=${repositories[$path]}
|
||||
|
||||
realPath="${HOME}/$path"
|
||||
if [ -d "$realPath" ]; then
|
||||
echo "-- $realPath already exist... skipping clone"
|
||||
continue
|
||||
fi
|
||||
|
||||
echo "-- Cloning to $realPath";
|
||||
git clone "$url" "$realPath"
|
||||
done
|
||||
|
||||
5
.config/yadm/bootstrap.v2/actions/99-Darkman.sh
Normal file
5
.config/yadm/bootstrap.v2/actions/99-Darkman.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/env sh
|
||||
|
||||
echo "# Refreshing darkman (bruteforce method)"
|
||||
darkman toggle
|
||||
darkman toggle
|
||||
Loading…
Add table
Add a link
Reference in a new issue