figured out how to theme individual applications without it cascading into other apps
parent
fd3409dd2b
commit
5bac14c054
2
.zshrc
2
.zshrc
|
|
@ -193,3 +193,5 @@ function y() {
|
|||
calc() { printf "%s\n" "$@" | bc -l; }
|
||||
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
export PATH=$PATH:/home/themiro/.spicetify
|
||||
|
|
|
|||
|
|
@ -1,24 +0,0 @@
|
|||
|
||||
* {
|
||||
|
||||
|
||||
all: initial;
|
||||
all: inherit;
|
||||
all: unset;
|
||||
|
||||
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
||||
font-size: 25pt;
|
||||
|
||||
border-radius: 15px;
|
||||
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
margin-right: 2px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
|
|
@ -210,7 +210,7 @@ bind = $mainMod, L, exec, hyprctl dispatch exit 1
|
|||
#bind = $mainMod, A, exec, killall waybar ; waybar
|
||||
bind = $mainMod, A, exec, eww reload
|
||||
bind = $mainMod, N, exec, nextcloud
|
||||
bind = $mainMod, I, exec, bash ~/Dotfiles/desktopenvs/hyprland/wofi/netman/wofi-network-manager.sh
|
||||
bind = $mainMod, I, exec, env GTK_THEME=cyberqueer bash ~/Dotfiles/desktopenvs/hyprland/wofi/netman/wofi-network-manager.sh
|
||||
bind = $mainMod, S, exec, [tag +mixer] kitty pulsemixer
|
||||
bind = $mainMod, X, exec, wofi --show=run
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,58 @@
|
|||
|
||||
* {
|
||||
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
||||
border-radius: 15px;
|
||||
font-size: 18pt;
|
||||
|
||||
background-color: #1a1a1a;
|
||||
|
||||
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
margin-right: 2px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
window {
|
||||
|
||||
color: #E40046;
|
||||
background-color: #1a1a1a;
|
||||
}
|
||||
#input {
|
||||
border: solid;
|
||||
border-width: 4px;
|
||||
color: #5018dd;
|
||||
border-radius: 30px;
|
||||
|
||||
|
||||
|
||||
#padding-top: 15px;
|
||||
|
||||
margin-top: 15px;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
|
||||
margin-right: 15px;
|
||||
margin-left: 15px;
|
||||
}
|
||||
#entry {
|
||||
color: #5018dd;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
border: solid;
|
||||
background-color: #1a1a1a;
|
||||
border-width: 4px;
|
||||
color: #E40046;
|
||||
border-radius: 30px;
|
||||
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
|
||||
}
|
||||
|
|
@ -94,6 +94,8 @@ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:
|
|||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||
|
||||
sudo cp -r .config /etc/skel/
|
||||
sudo cp -r ~/Dotfiles/gtk-themes/cyberqueer /usr/share/themes
|
||||
|
||||
|
||||
#zsh setup
|
||||
echo "Setting up zsh"
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@ ln -s ~/Dotfiles/desktopenvs/hyprland/dunst/ ~/.config/
|
|||
ln -s ~/Dotfiles/desktopenvs/hyprland/alacritty ~/.config/alacritty
|
||||
ln -s ~/Dotfiles/desktopenvs/hyprland/gtk/* ~/.config
|
||||
|
||||
sudo cp -r ~/Dotfiles/gtk-themes/cyberqueer /usr/share/themes
|
||||
|
||||
|
||||
#cli dotfiles
|
||||
echo "Installing bash and zsh setting files"
|
||||
|
|
|
|||
Loading…
Reference in New Issue