mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-22 15:43:42 +00:00
15 lines
322 B
Bash
15 lines
322 B
Bash
|
#!/bin/env bash
|
||
|
CONFIG_DIR=$(dirname $(dirname "$(realpath $0)"))
|
||
|
|
||
|
# Kitty terminal
|
||
|
echo "include themes/rose-pine-moon.conf" >$HOME/.config/kitty/theme.conf
|
||
|
kill -SIGUSR1 $(pidof kitty)
|
||
|
|
||
|
# Neovim
|
||
|
kill -SIGUSR1 $(pidof nvim)
|
||
|
|
||
|
# Bat
|
||
|
sed -i "s/--theme=.*/--theme=OneHalfDark/g" ${CONFIG_DIR}/bat/config
|
||
|
|
||
|
home-manager switch
|