Correct mistakes making Hyper-V work correctly

This commit is contained in:
David Holland 2022-02-06 13:23:13 +01:00
parent a5cba8df97
commit fe59dfbf51
3 changed files with 12 additions and 6 deletions

View File

@ -93,6 +93,12 @@ window:
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
# 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: 1.0
scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
@ -356,12 +362,6 @@ colors:
#
#command: None
# 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
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.

4
.xinitrc Normal file → Executable file
View File

@ -3,6 +3,7 @@ userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
env=$HOME/.zshenv
if [ -f $sysresources ]; then
xrdb -merge $sysresources
@ -20,6 +21,9 @@ if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
if [ -x "$env" ]; then
. "$env"
fi
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do

2
.zshenv Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env zsh
typeset -TUx PATH path
typeset -TUx LD_LIBRARY_PATH ld_library_path