codestyle
This commit is contained in:
parent
26e6bd40bb
commit
160cecbbef
@ -1,11 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
sub="$HOME/.local/share/fonts"
|
set -e
|
||||||
|
|
||||||
mkdir -p "$sub"
|
sub="${HOME}/.local/share/fonts"
|
||||||
cd "$sub"
|
|
||||||
|
mkdir -p "${sub}"
|
||||||
|
cd "${sub}"
|
||||||
wget 'https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip'
|
wget 'https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip'
|
||||||
unzip FiraCode.zip -d "$sub"
|
unzip FiraCode.zip -d "${sub}"
|
||||||
git clone 'https://github.com/powerline/fonts.git' --depth=1
|
git clone 'https://github.com/powerline/fonts.git' --depth=1
|
||||||
cd fonts
|
cd fonts
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cat "$SUB/.gnupg/gpg.conf" >> "$HOME/.gnupg/gpg.conf"
|
cat "${SUB}/.gnupg/gpg.conf" >> "${HOME}/.gnupg/gpg.conf"
|
||||||
echo -e "default-cache-ttl 1\nmax-cache-ttl 1" > "$HOME/.gnupg/gpg-agent.conf"; echo RELOADAGENT | gpg-connect-agent
|
printf "%s\n%s" "default-cache-ttl 1" "max-cache-ttl 1" > "${HOME}/.gnupg/gpg-agent.conf"
|
||||||
|
echo RELOADAGENT | gpg-connect-agent
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
mkdir -p "$SANDBOX_PATH/.config/ranger/plugins"
|
mkdir -p "${SANDBOX_PATH}/.config/ranger/plugins"
|
||||||
git clone https://github.com/alexanderjeurissen/ranger_devicons "$SANDBOX_PATH/.config/ranger/plugins/ranger_devicons"
|
git clone https://github.com/alexanderjeurissen/ranger_devicons "${SANDBOX_PATH}/.config/ranger/plugins/ranger_devicons"
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cat "$SUB/.ssh/config" >> "$HOME/.ssh/config"
|
cat "${SUB}/.ssh/config" >> "${HOME}/.ssh/config"
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
command -v systemctl >/dev/null && systemctl --user enable --now tmux
|
command -v systemctl >/dev/null && systemctl --user enable --now tmux
|
||||||
git clone https://github.com/tmux-plugins/tpm "$HOME/.config/tmux/plugins/tpm" | true
|
git clone https://github.com/tmux-plugins/tpm "${HOME}/.config/tmux/plugins/tpm" | true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user