bin
altaria
bg-apps
butterfree
umbreon
backlight
i3-logout
i3-utils
i3lock
kitty-alternate-theme
media
play-sound
pulseaudio
scwrypts
set-background
vim
xorg-activate-default
colorschemes
config
resume
setup
vim
zsh
.gitattributes
.gitignore
.gitmodules
README.md
16 lines
295 B
Bash
Executable File
16 lines
295 B
Bash
Executable File
#!/bin/zsh
|
|
source "$HOME/.config/wryn/env.zsh"
|
|
|
|
function _SET_THEME() {
|
|
local THEME="$1"
|
|
local LOCAL_THEME="$HOME/.config/kitty/theme.conf"
|
|
rm -- $LOCAL_THEME
|
|
ln -s "$DOTWRYN/colorschemes/kitty.$THEME" "$LOCAL_THEME"
|
|
}
|
|
|
|
|
|
_SET_THEME alternate
|
|
i3-sensible-terminal &
|
|
sleep 0.1
|
|
_SET_THEME main
|