2021-02-23 15:38:03 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-09-15 01:48:37 -06:00
|
|
|
source "$HOME/.config/wryn/env/env.zsh"
|
2021-02-24 17:38:02 -07:00
|
|
|
|
|
|
|
CONFIG_DIR="$DOTWRYN/config/kitty"
|
2021-02-23 15:38:03 -07:00
|
|
|
|
|
|
|
[ -f "$CONFIG_DIR/temp.conf" ] && return 1 # race condition lock
|
|
|
|
|
|
|
|
mv "$CONFIG_DIR/theme.conf" "$CONFIG_DIR/temp.conf"
|
|
|
|
mv "$CONFIG_DIR/alternate.conf" "$CONFIG_DIR/theme.conf"
|
|
|
|
|
|
|
|
i3-sensible-terminal &
|
|
|
|
sleep 0.1
|
|
|
|
|
|
|
|
mv "$CONFIG_DIR/theme.conf" "$CONFIG_DIR/alternate.conf"
|
|
|
|
mv "$CONFIG_DIR/temp.conf" "$CONFIG_DIR/theme.conf"
|