Compare commits

...

7 Commits

5 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,3 @@
# Permet à Chromium de se lancer dans Wayland # Permet à Chromium de se lancer dans Wayland
--enable-features=UseOzonePlatform #--enable-features=UseOzonePlatform
--ozone-platform=wayland #--ozone-platform=wayland

View File

@ -426,5 +426,5 @@ macos_option_as_alt yes
x11_bell_volume 80 x11_bell_volume 80
# Ajout du thème Solarized Light sur https://github.com/dexpota/kitty-themes # Ajout du thème Solarized Light sur https://github.com/dexpota/kitty-themes
include ./dark.conf include ./light.conf

View File

@ -217,7 +217,7 @@ label = %percentage_used%%
[module/wlan] [module/wlan]
type = internal/network type = internal/network
interface = wlp3s0 interface = wlan0
interval = 3.0 interval = 3.0
;format-connected = <ramp-signal> <label-connected> ;format-connected = <ramp-signal> <label-connected>
@ -240,7 +240,7 @@ ramp-signal-foreground = ${colors.foreground-alt}
[module/eth] [module/eth]
type = internal/network type = internal/network
interface = eno1 interface = enp3s0
interval = 3.0 interval = 3.0
format-connected-underline = #55aa55 format-connected-underline = #55aa55
@ -346,7 +346,8 @@ warn-temperature = 65
; $ for i in /sys/class/hwmon/hwmon*/temp*_input; do echo "$(<$(dirname $i)/name): $(cat ${i%_*}_label 2>/dev/null || echo $(basename ${i%_*})) $(readlink -f $i)"; done ; $ for i in /sys/class/hwmon/hwmon*/temp*_input; do echo "$(<$(dirname $i)/name): $(cat ${i%_*}_label 2>/dev/null || echo $(basename ${i%_*})) $(readlink -f $i)"; done
; to find path to desired file ; to find path to desired file
; Default reverts to thermal zone setting ; Default reverts to thermal zone setting
hwmon-path = /sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input hwmon-path = /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.0/hwmon/hwmon2/temp1_input
#hwmon-path = /sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input
;format = <ramp> <label> ;format = <ramp> <label>
format = <label> format = <label>

View File

@ -1,5 +1,5 @@
typeset -U PATH path 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 export PATH
# Autocomplètement supplémentaire (Docker) # Autocomplètement supplémentaire (Docker)

6
.zshrc
View File

@ -68,7 +68,7 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
plugins=(git httpie ng npm nvm pass pip sudo wd pyenv) plugins=(git httpie ng npm nvm pass pip sudo wd pyenv kubectl helm terraform)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
@ -139,6 +139,8 @@ alias pytc='poetry run pytest -vvs --disable-warnings --cov-report=xml:cov.xml'
alias rero="ALIAS=rero /home/od/projets/rerologik/agnes" alias rero="ALIAS=rero /home/od/projets/rerologik/agnes"
# coloration de la commande IP # coloration de la commande IP
alias ip='ip -c' alias ip='ip -c'
alias k='kubectl'
alias devu="${HOME}/devu42/devu/devu"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh [[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh
@ -178,6 +180,6 @@ case $HOST in
source /usr/share/nvm/init-nvm.sh source /usr/share/nvm/init-nvm.sh
# Virtualenv (for Python development) # Virtualenv (for Python development)
export WORKON_HOME=~/.virtualenvs export WORKON_HOME=~/.virtualenvs
source /usr/bin/virtualenvwrapper.sh #source /usr/bin/virtualenvwrapper.sh
;; ;;
esac esac