diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-02-09 23:05:10 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-02-09 23:05:10 +0100 |
| commit | 8385dc317f768321b62d27ce5980f6dbe7634034 (patch) | |
| tree | 864cf068ca42793ca677599c40acf04efda6026d | |
| parent | fb562670c4a43f3327b6992f5e10d945d0b9ea92 (diff) | |
.
| -rw-r--r-- | alacritty/alacritty.yml | 8 | ||||
| -rwxr-xr-x | install.sh | 11 |
2 files changed, 8 insertions, 11 deletions
diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 6dc02c1..e7be8b5 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -38,6 +38,8 @@ window: dynamic_title: true + opacity: 1.0 + scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. @@ -204,12 +206,6 @@ bell: animation: EaseOutExpo duration: 0 -# 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: 1.0 - # Mouse bindings # # Available fields: @@ -6,7 +6,7 @@ symlink () { ln -sfT "$@" } -install_python() { +install_python_venv() { LONG=$1 SHORT=${LONG//\./} @@ -32,6 +32,8 @@ install_python() { symlink $PIP_BIN $LOCAL_PIP_BIN symlink $PYTHON_DIR/bin/doit $LOCAL_DOIT_BIN + symlink ~/bin/python$LONG ~/bin/python3 + fi } @@ -96,10 +98,9 @@ symlink ~/.dotfiles/pictures ~/.pictures symlink ~/.dotfiles/polybar ~/.config/polybar # python -install_python 3.8 -install_python 3.9 -install_python 3.10 -symlink ~/bin/python3.10 ~/bin/python3 +install_python_venv 3.8 +install_python_venv 3.9 +install_python_venv 3.10 symlink ~/bin/python3 ~/bin/python # qutebrowser |
