Compare commits
2 Commits
vif
...
b70caa2bb8
Author | SHA1 | Date | |
---|---|---|---|
b70caa2bb8 | |||
ad2e5660dd |
@ -1,3 +1,3 @@
|
||||
# Permet à Chromium de se lancer dans Wayland
|
||||
#--enable-features=UseOzonePlatform
|
||||
#--ozone-platform=wayland
|
||||
--enable-features=UseOzonePlatform
|
||||
--ozone-platform=wayland
|
@ -1,2 +1,4 @@
|
||||
# Active wayland pour Firefox
|
||||
MOZ_ENABLE_WAYLAND=1
|
||||
# Modifie le comportement JAVA pour PHPStorm
|
||||
_JAVA_AWT_WM_NONREPARENTING=1
|
||||
|
21
.config/kitty/dark.conf
Normal file
21
.config/kitty/dark.conf
Normal file
@ -0,0 +1,21 @@
|
||||
background #001e26
|
||||
foreground #708183
|
||||
cursor #708183
|
||||
selection_background #002731
|
||||
color0 #002731
|
||||
color8 #465a61
|
||||
color1 #d01b24
|
||||
color9 #bd3612
|
||||
color2 #728905
|
||||
color10 #465a61
|
||||
color3 #a57705
|
||||
color11 #52676f
|
||||
color4 #2075c7
|
||||
color12 #708183
|
||||
color5 #c61b6e
|
||||
color13 #5856b9
|
||||
color6 #259185
|
||||
color14 #81908f
|
||||
color7 #e9e2cb
|
||||
color15 #fcf4dc
|
||||
selection_foreground #001e26
|
@ -425,5 +425,5 @@ macos_option_as_alt yes
|
||||
x11_bell_volume 80
|
||||
|
||||
# Ajout du thème Solarized Light sur https://github.com/dexpota/kitty-themes
|
||||
include ./theme.conf
|
||||
include ./dark.conf
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
./Solarized_Dark_-_Patched.conf
|
8
.profile
8
.profile
@ -26,6 +26,13 @@ fi
|
||||
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
|
||||
case $HOST in
|
||||
fuz | fuztest)
|
||||
variables_file="${HOME}/.config/environment.d/envvars.conf"
|
||||
if [[ -f "${variables_file}" ]]; then
|
||||
# charge seulement les lignes sans "#" (non commentées)
|
||||
for line in `cat "${variables_file}"|grep -Ev '^#'`; do
|
||||
export "$line"
|
||||
done
|
||||
fi
|
||||
exec sway
|
||||
;;
|
||||
*)
|
||||
@ -33,3 +40,4 @@ if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
# vim: ts=2 sw=2 et nu
|
||||
|
Reference in New Issue
Block a user