1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Compare commits

..

No commits in common. "a41314ca343e60f8ba0faff92fd89f7035c29d43" and "e25953d913c9a1d1508bb332de0d70972900fd07" have entirely different histories.

2 changed files with 7 additions and 14 deletions

View File

@ -51,12 +51,6 @@ window:
# - buttonless: Title bar, transparent background, but no title bar buttons
decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.8
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
@ -265,13 +259,6 @@ colors:
#
#indexed_colors: []
# Transparent cell backgrounds
#
# Whether or not `window.opacity` applies to all cell backgrounds or only to
# the default background. When set to `true` all cells will be transparent
# regardless of their background color.
transparent_background_colors: false
# Visual Bell
#
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once
@ -298,6 +285,12 @@ colors:
# duration: 0
# color: '#ffffff'
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
background_opacity: 0.80
selection:
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"

View File

@ -204,7 +204,6 @@ alias dst='docker stop'
alias drst='docker restart'
alias dnet='docker network'
alias dvol='docker volume'
alias dc='docker compose'
alias dlg='docker logs --tail=1000 -f'
alias dalpine='docker run -ti --rm spritsail/alpine /bin/sh'
alias drm-stopped='docker container prune'
@ -280,6 +279,7 @@ do_dsh() {
docker "${docker_args[@]}" "$host" "${prog[@]}"
}
alias dc='docker-compose'
alias dm='docker-machine'
dmc() { eval "$(docker-machine env "$1")"; }