Compare commits

...

8 Commits
vif ... master

11 changed files with 43 additions and 9 deletions

View File

@ -1,2 +1,4 @@
# Active wayland pour Firefox
MOZ_ENABLE_WAYLAND=1
# Modifie le comportement JAVA pour PHPStorm
_JAVA_AWT_WM_NONREPARENTING=1

View 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

View File

@ -184,7 +184,8 @@ rectangle_select_modifiers ctrl+alt
allow_remote_control no
# The value of the TERM environment variable to set
term xterm-kitty
#term xterm-kitty
term xterm-256color
# The width (in pts) of window borders. Will be rounded to the nearest number of pixels based on screen resolution.
# Note that borders are displayed only when more than one window is visible. They are meant to separate multiple windows.
@ -425,5 +426,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

View File

@ -1 +0,0 @@
./Solarized_Dark_-_Patched.conf

View File

@ -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

View File

@ -26,7 +26,7 @@ Port 22
Host ovh
Hostname 37.187.17.29
User od
Port 22
Port 4555
# ??
Host pi

View File

@ -84,7 +84,7 @@ set -g status-left "#{pane_current_path}"
set -g status-left-length 30
# Activer mon layout par defaut
new -s projets -n dev
splitw -v -p 50 -t dev
neww -n autre
selectw -t dev
#new -s projets -n dev
#splitw -v -p 50 -t dev
#neww -n autre
#selectw -t dev

View File

@ -1,4 +1,5 @@
ans:/home/od/projets/buffet
blog:~/projets/blog
buf:/home/od/projets/buffet
cloud:~/freshmile/cloud
patchwork:/home/od/projets/patchwork

2
.zshrc
View File

@ -136,6 +136,8 @@ alias pyt='poetry run pytest -vvs --no-cov --disable-warnings'
alias pytc='poetry run pytest -vvs --disable-warnings --cov-report=xml:cov.xml'
# projet rero
alias rero="ALIAS=rero /home/od/projets/rerologik/agnes"
# colration de la commande IP
alias ip='ip -c'
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh

View File

@ -9,7 +9,7 @@ minutes=15
PROGRAM=`which feh`
# Some tests
if [[ "$XDG_SESSION_TYPE" -eq "wayland" ]]; then
if [[ "${XDG_SESSION_TYPE}" == "wayland" ]]; then
PROGRAM=`which swaymsg`
if [ -z "${PROGRAM}" ]; then
echo "This script needs the swaymsg program."