Shortened clock, added setup automation
This commit is contained in:
parent
9c8b87bcc6
commit
2b60aeb15c
|
@ -41,5 +41,5 @@ label=lang:
|
||||||
interval=1
|
interval=1
|
||||||
|
|
||||||
[time]
|
[time]
|
||||||
command=date '+%d.%m.%Y %H:%M'
|
command=date '+%d.%m %H:%M'
|
||||||
interval=10
|
interval=10
|
||||||
|
|
|
@ -2,9 +2,11 @@
|
||||||
|
|
||||||
cat ~/.bashrc | grep nfrc || echo "source ~/.dotfiles/nfrc.sh" >> ~/.bashrc
|
cat ~/.bashrc | grep nfrc || echo "source ~/.dotfiles/nfrc.sh" >> ~/.bashrc
|
||||||
|
|
||||||
sudo pacman -S fzf zoxide fd nvim stow
|
sudo pacman -S --needed fzf zoxide fd nvim stow ripgrep acpi jq
|
||||||
|
|
||||||
dirs=$(find ./ -maxdepth 1 -mindepth 1 -not -path "./.git" -not -path "./bin" -type d | sed 's:./::')
|
dirs=$(find ./ -maxdepth 1 -mindepth 1 -not -path "./.git" -not -path "./bin" -type d | sed 's:./::')
|
||||||
|
for dir in $dirs; do
|
||||||
echo $dirs
|
stow $dir --adopt
|
||||||
|
done
|
||||||
|
git checkout
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue