6 lines
362 B
Plaintext
6 lines
362 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
sed --in-place --follow-symlinks --expression "s/^colors: \*light/colors: *dark/" ~/.config/alacritty/alacritty.yml
|
||
|
sed --in-place --follow-symlinks --expression "s/^set background=light/set background=dark/" ~/.config/nvim/init.vim
|
||
|
sed --in-place --follow-symlinks --expression "s/light/dark/" ~/.tmux.conf && tmux source-file ~/.tmux.conf
|