Compare commits

...

18 Commits

Author SHA1 Message Date
4ed2e9c7f8 Merge branch 'fuz' of forge.o9.re:olivier/dotfiles into fuz 2024-11-14 10:32:50 +01:00
da09bda8dc BATTERY: change battery number 2024-11-14 10:32:35 +01:00
f522935be9 fix(ZSH): do not use virtualenvwrapper 2024-10-20 21:05:01 +02:00
db193417c8 feat(alias): New aliases for kubectl and devu 2024-10-20 14:45:34 +02:00
cb4bc3f2d2 feat(Go): Add go PATH in PATH 2024-10-20 14:45:01 +02:00
a25bf962ff BIN: correction de random_wallpaper pour Xorg 2024-10-17 16:35:04 +02:00
fd6b431d51 WARPRC: Nouveaux raccourcis pour les projets ! 2024-10-17 11:48:57 +02:00
718dc045db Config. SSH: Ajout de plusieurs serveurs 2024-10-17 11:48:57 +02:00
9b0160cc0a i3: Amélioration de l'environnement de bureau avec:
* ajout d'Hamsket au bon bureau
* Arrêt de l'utilisation de hamster-indicator
* corrections mineures dans .tmux pour incompatibilité
2024-10-17 11:48:54 +02:00
03a2f6cafd ZSH: Ajout de la configuration de Kubernetes 2024-10-17 11:47:42 +02:00
59586947d9 ZSH: nouvel alias pour la commande ip 2024-10-17 11:47:39 +02:00
b04dfb860a PYENV: ajouté à ZSH 2024-10-17 11:46:55 +02:00
af4057e4ec fix(TMUX): Problème avec une option de TMUX 2024-03-30 22:13:10 +01:00
99c25cf2a8 fix(Raccourcis): Ajout de ~/projets/blog comme raccourci CLI 2023-12-02 12:59:22 +01:00
261eabb7f2 fix(Scripts): Correction sur la vérification wayland/Xorg 2023-12-02 12:57:57 +01:00
484b1cbbd5 ZSH: coloration syntaxique de la commande IP 2021-12-05 06:15:04 +01:00
380fef687a Kitty: Passage à xterm-256color comme valeur par défaut de TERM 2021-12-04 19:48:00 +01:00
29a6649a49 SSH: Mise à jour du serveur OVH (nouveau port 4555) 2021-12-04 19:48:00 +01:00
10 changed files with 80 additions and 14 deletions

View File

@ -165,7 +165,7 @@ bindsym $mod+r mode "resize"
assign [class="jetbrains-idea|Code"] 1
assign [class="Google-chrome|Vivaldi-stable|Opera|Firefox|Navigator|Nightly|Chromium"] 2
assign [class="Thunderbird|Mail|jetbrains-phpstorm"] 3
assign [class="Mattermost|mattermost-desktop|Rambox|Slack|Scudcloud|Gitter|Dino"] 4
assign [class="Mattermost|mattermost-desktop|Rambox|Slack|Scudcloud|Gitter|Dino|Hamsket"] 4
##### STATUS BAR
@ -240,7 +240,7 @@ smart_gaps on
exec_always --no-startup-id "kill -9 `ps aux | grep random_wallpaper |grep -v 'grep'| awk '{print $2}'`; random_wallpaper &"
# Hasmter indicator
exec --no-startup-id hamster
#exec --no-startup-id hamster
# Clipit : Presse-papiers pour le bureau
exec --no-startup-id clipit

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.

View File

@ -22,6 +22,11 @@ if [ "$0" = "/usr/sbin/lightdm-session" -a "$DESKTOP_SESSION" = "i3" ]; then
export $(gnome-keyring-daemon -s)
fi
# Environnement Pyenv
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
# Démarrage de l'environnement préféré
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
case $HOST in

View File

@ -26,7 +26,7 @@ Port 22
Host ovh
Hostname 37.187.17.29
User od
Port 22
Port 4555
# ??
Host pi
@ -117,3 +117,48 @@ Host backup
Hostname 37.187.17.29
User root
Port 22
## Serveur salon (Beelink)
Host suc
Hostname 192.168.1.42
User od
Port 22
## Labo K8s
Host deux
Hostname 192.168.1.102
User od
Port 22
Host trois
Hostname 192.168.1.103
User od
Port 22
Host quatre
Hostname 192.168.1.104
User od
Port 22
## Labo K8S AMD64
Host douze
Hostname 192.168.1.112
User nous
Port 22
Host treize
Hostname 192.168.1.113
User maison
Port 22
Host quatorze
Hostname 192.168.1.202
User od
Port 22
## Formation DevOps - Datascientest
Host devu
Hostname 54.229.27.155
User ubuntu
Port 22
IdentityFile ~/.ssh/data_enginering_machine.pem

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,6 +1,11 @@
ans:/home/od/projets/buffet
blog:~/projets/blog
buf:/home/od/projets/buffet
cal:~/projets/effeuillage
cloud:~/freshmile/cloud
fastapi:~/devu/exam_DOSSMANN/fastapi_exam_DOSSMANN
graille:~/projets/graille
ops:~/projets/ops
patchwork:/home/od/projets/patchwork
p:~/freshmile/pulp
ps:~/freshmile/pulp/Seed

View File

@ -1,5 +1,9 @@
emulate sh -c '. ~/.profile'
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
# Start X automatically
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
exec startx

View File

@ -1,5 +1,5 @@
typeset -U PATH path
path=("$HOME/.local/bin" "$HOME/bin" "/opt/sublime_merge" "$path[@]")
path=("$HOME/.local/bin" "$HOME/bin" "/opt/sublime_merge" "$path[@]", "$(go env GOPATH)/bin")
export PATH
# Autocomplètement supplémentaire (Docker)

9
.zshrc
View File

@ -68,7 +68,7 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git httpie ng npm nvm pass pip sudo wd)
plugins=(git httpie ng npm nvm pass pip sudo wd pyenv)
source $ZSH/oh-my-zsh.sh
@ -87,6 +87,7 @@ export PYTHONWARNINGS="ignore::DeprecationWarning"
#export FLASK_SKIP_DOTENV=1 ## make problems with poetry and flask applications
export PIPENV_QUIET=1 # enlève les courtesy notice
export ENABLE_WARNINGS=false # enlève les warnings dans le setup RERO-ils
export KUBECONFIG=$HOME/kubeconfig
# You may need to manually set your language environment
export LANG=fr_FR.UTF-8
@ -136,6 +137,10 @@ 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"
# coloration de la commande IP
alias ip='ip -c'
alias k='kubectl'
alias devu="${HOME}/devu42/devu/devu"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh
@ -175,6 +180,6 @@ case $HOST in
source /usr/share/nvm/init-nvm.sh
# Virtualenv (for Python development)
export WORKON_HOME=~/.virtualenvs
source /usr/bin/virtualenvwrapper.sh
#source /usr/bin/virtualenvwrapper.sh
;;
esac

View File

@ -7,15 +7,16 @@
directory="$HOME/wallpapers"
minutes=15
PROGRAM=`which feh`
is_wayland=false
# 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."
exit 1
fi
wayland=1
is_wayland=true
elif [ -z "${PROGRAM}" ]; then
echo "This script needs the feh program. Install it."
exit 1
@ -48,7 +49,7 @@ while true; do
# Change background
file="${array_files["$NUMBER"]}"
if [[ -n wayland ]]; then
if "${is_wayland}"; then
$PROGRAM output "*" bg "$directory/$file" fill
else
feh --bg-fill "$directory/$file"