Update alacritty config and .profile to support Cosmic DE

This commit is contained in:
Daniel McKnight 2025-10-04 21:35:02 -07:00
parent 65f8d967df
commit f462daedbb
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
[general] # [general]
import = ["./github_dark_high_contrast.toml" ] import = ["./github_dark_high_contrast.toml" ]
[colors.primary] [colors.primary]
@ -22,5 +22,5 @@ blinking = "Always"
[window] [window]
opacity = 0.95 opacity = 0.95
decorations = "None" decorations = "None"
level = "AlwaysOnTop" # level = "AlwaysOnTop"
dynamic_padding = true dynamic_padding = true

View file

@ -38,5 +38,7 @@ if [ $(which nvim) ]; then
fi fi
# Set zsh as the default shell if available # Set zsh as the default shell if available
[ -e /bin/zsh ] && export SHELL=/bin/zsh if [ $(which zsh) ]; then
export SHELL=$(which zsh)
fi