Add scripts for installing

This commit is contained in:
Manuel Thalmann 2024-01-18 14:25:59 +01:00
parent 3faba1dd0b
commit 46ca481211
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu \
gvim \
vi-vim-symlink \
vim-wayland-clipboard-git \
;
. "../../../Common/Config/vim/install.sh";
popd > /dev/null;

View file

@ -0,0 +1,8 @@
#!/bin/bash
indicator="set clipboard";
configFile="/etc/vimrc";
if ! grep "\b$indicator\b" "$configFile" > /dev/null
then
echo "$indicator+=unnamed,unnamedplus" | sudo tee /etc/vimrc > /dev/null;
fi;

0
scripts/Common/Software/nuke-usb/install.sh Normal file → Executable file
View file