From 2b60aeb15c2317c0e15fa60cf8ec528cc48ae6c2 Mon Sep 17 00:00:00 2001 From: Nefrace Date: Sat, 31 May 2025 18:02:50 +0300 Subject: [PATCH] Shortened clock, added setup automation --- i3/.config/i3blocks/config | 2 +- prepare.sh | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/i3/.config/i3blocks/config b/i3/.config/i3blocks/config index 7ef0987..1e3fcee 100644 --- a/i3/.config/i3blocks/config +++ b/i3/.config/i3blocks/config @@ -41,5 +41,5 @@ label=lang: interval=1 [time] -command=date '+%d.%m.%Y %H:%M' +command=date '+%d.%m %H:%M' interval=10 diff --git a/prepare.sh b/prepare.sh index 6f27b86..8ddde1e 100755 --- a/prepare.sh +++ b/prepare.sh @@ -2,9 +2,11 @@ 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:./::') - -echo $dirs +for dir in $dirs; do + stow $dir --adopt +done +git checkout