Correct mistakes making Hyper-V work correctly
This commit is contained in:
parent
a5cba8df97
commit
fe59dfbf51
3 changed files with 12 additions and 6 deletions
|
@ -93,6 +93,12 @@ window:
|
||||||
# and `light`. Set this to `None` to use the default theme variant.
|
# and `light`. Set this to `None` to use the default theme variant.
|
||||||
#gtk_theme_variant: None
|
#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:
|
scrolling:
|
||||||
# Maximum number of lines in the scrollback buffer.
|
# Maximum number of lines in the scrollback buffer.
|
||||||
# Specifying '0' will disable scrolling.
|
# Specifying '0' will disable scrolling.
|
||||||
|
@ -356,12 +362,6 @@ colors:
|
||||||
#
|
#
|
||||||
#command: None
|
#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:
|
#selection:
|
||||||
# This string contains all characters that are used as separators for
|
# This string contains all characters that are used as separators for
|
||||||
# "semantic words" in Alacritty.
|
# "semantic words" in Alacritty.
|
||||||
|
|
4
.xinitrc
Normal file → Executable file
4
.xinitrc
Normal file → Executable file
|
@ -3,6 +3,7 @@ userresources=$HOME/.Xresources
|
||||||
usermodmap=$HOME/.Xmodmap
|
usermodmap=$HOME/.Xmodmap
|
||||||
sysresources=/etc/X11/xinit/.Xresources
|
sysresources=/etc/X11/xinit/.Xresources
|
||||||
sysmodmap=/etc/X11/xinit/.Xmodmap
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||||
|
env=$HOME/.zshenv
|
||||||
|
|
||||||
if [ -f $sysresources ]; then
|
if [ -f $sysresources ]; then
|
||||||
xrdb -merge $sysresources
|
xrdb -merge $sysresources
|
||||||
|
@ -20,6 +21,9 @@ if [ -f $usermodmap ]; then
|
||||||
xmodmap $usermodmap
|
xmodmap $usermodmap
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -x "$env" ]; then
|
||||||
|
. "$env"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||||
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
||||||
|
|
2
.zshenv
Normal file → Executable file
2
.zshenv
Normal file → Executable file
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
typeset -TUx PATH path
|
typeset -TUx PATH path
|
||||||
typeset -TUx LD_LIBRARY_PATH ld_library_path
|
typeset -TUx LD_LIBRARY_PATH ld_library_path
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue