52 lines
1.2 KiB
Bash
Executable File
52 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# color scheme
|
|
plasma-apply-colorscheme "Rosé Pine"
|
|
|
|
# cursor
|
|
plasma-apply-cursortheme "BreezeX-RosePine-Linux"
|
|
|
|
# application style
|
|
kvantummanager --set rose-pine-gold
|
|
|
|
# icon
|
|
/usr/lib/plasma-changeicons "Papirus-Colors-Dark"
|
|
|
|
# wallpaper
|
|
plasma-apply-wallpaperimage ~/Pictures/moon.jpg
|
|
|
|
# alacritty
|
|
rm ~/.config/alacritty/alacritty.toml
|
|
cp ~/.dotfiles/alacritty/dark.toml ~/.config/alacritty/alacritty.toml
|
|
|
|
# fish
|
|
rm ~/.config/fish/config.fish
|
|
cp ~/.dotfiles/fish/dark.fish ~/.config/fish/config.fish
|
|
|
|
# helix
|
|
rm ~/.config/helix/config.toml
|
|
cp ~/.dotfiles/helix/dark.toml ~/.config/helix/config.toml
|
|
|
|
# starship
|
|
rm ~/.config/starship.toml
|
|
cp ~/.dotfiles/starship/dark.toml ~/.config/starship.toml
|
|
|
|
#vscode
|
|
rm ~/.config/Code/User/settings.json
|
|
cp ~/.dotfiles/vscode/dark.json ~/.config/Code/User/settings.json
|
|
|
|
# lazygit
|
|
rm ~/.config/lazygit/config.yml
|
|
cp ~/.dotfiles/lazygit/dark.yml ~/.config/lazygit/config.yml
|
|
|
|
# spotify
|
|
spicetify config current_theme text
|
|
spicetify config color_scheme RosePine
|
|
spicetify apply
|
|
|
|
# zen
|
|
rm ~/.zen/jmlkuj5u.Default\ \(release\)/chrome/*
|
|
cp ~/.dotfiles/zen/dark/* ~/.zen/jmlkuj5u.Default\ \(release\)/chrome/
|
|
killall zen-bin
|
|
zen-browser
|