rod-stuchi / dotfiles_old

My Arch dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotfiles

My Arch dotfiles

clone dotfiles

git clone https://github.com/rod-stuchi/dotfiles.git .dotfiles --bare --no-checkout

install deps

# asdf-vm
git clone https://github.com/asdf-vm/asdf.git ~/.asdf

# oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

# vim-plug
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

# On archlinux
sudo pacman -S fzf moreutils

# On macOS
brew install fzf moreutils

checkout configuration

/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME add .zshrc
/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME checkout -p master .zshrc

ggit add .config/nvim
ggit checkout -p {master|macos} .config/nvim

Or

ggit checkout {master|macos} .config/nvim

ignore untracked files

ggit config --local status.showUntrackedFiles no

Usefull blended commands

Add permission to ImageMagic to generate thumbnails from PDF files

sudo sed -ie 's/rights="none"/rights="all"/' /etc/ImageMagick-7/policy.xml
convert -thumbnail x300 -background white -alpha remove "{file}.pdf[0]" "{file}_thumb.png"

Remove files not in use, when it can not find any reference

ls PATH | xargs -L1 -I{} sh -c 'rg -q {} *.md; if [[ $? != 0 ]]; then rm PATH/{}; fi'

Compress with XZ (better compression level) with progress

tar cpf - _*.json | pv -pbrt -s $(du -shc *.json | cut -f1 | tail -n1) | xz -9 > archive.tar.xz

Add find|fd files to Tar

fd {name} -t f -print0 | tar -czvf {file}.tar.gz --null -T -

To list content of file

tar tvf archive.tar.xz

To see the compress rate

xz -l archive.tar.xz

To create a file with size

+info

head -c 15M </dev/urandom >myfile

MySQL convert_tz returns null

+info

mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -uroot mysql

Find a string in all git branches

+info

# by branch name
git show-ref --heads | sort -u | awk '{ print $2 }' | xargs git grep "string"

# by sha1sum branch
git show-ref -s | sort -u | xargs git grep "string"

# by commits
git rev-list --all | xargs git grep "string"

Troubleshooting

after suspend headphone doesn't reconnect (need replug)

How to solve

git clone https://github.com/Unrud/init-headphone
./autogen.sh
./configure
make
make install

systemctl enable init-headphone

About

My Arch dotfiles

License:MIT License


Languages

Language:Shell 45.9%Language:Vim Script 24.0%Language:HTML 10.8%Language:Python 8.8%Language:Roff 7.6%Language:JavaScript 2.9%