Compare commits

...

5 Commits

5 changed files with 31 additions and 8 deletions

View File

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

View File

@ -214,7 +214,7 @@ bindsym XF86Sleep exec systemctl suspend
###
# Transparency (need picom)
exec_always --no-startup-id "killall picom; picom -b"
#exec_always --no-startup-id "killall picom; picom -b"
# DBUS daemon (needed for keyboard applet and more I think)
#exec --no-startup-id /usr/lib/gnome-settings-daemon/gnome-settings-daemon

View File

@ -426,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 ./dark.conf
include ./light.conf

View File

@ -217,7 +217,7 @@ label = %percentage_used%%
[module/wlan]
type = internal/network
interface = wlp3s0
interface = wlan0
interval = 3.0
;format-connected = <ramp-signal> <label-connected>
@ -240,7 +240,7 @@ ramp-signal-foreground = ${colors.foreground-alt}
[module/eth]
type = internal/network
interface = eno1
interface = enp3s0
interval = 3.0
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
; to find path to desired file
; 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 = <label>

24
.zshrc
View File

@ -77,6 +77,26 @@ POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
POWERLEVEL9K_SHORTEN_DELIMITER=""
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_from_right"
#compdef gitlab-ci-local
###-begin-gitlab-ci-local-completions-###
#
# yargs command completion script
#
# Installation: gitlab-ci-local completion >> ~/.zshrc
# or gitlab-ci-local completion >> ~/.zprofile on OSX.
#
_gitlab-ci-local_yargs_completions()
{
local reply
local si=$IFS
IFS=$'
' reply=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" gitlab-ci-local --get-yargs-completions "${words[@]}"))
IFS=$si
_describe 'values' reply
}
compdef _gitlab-ci-local_yargs_completions gitlab-ci-local
###-end-gitlab-ci-local-completions-###
# User configuration
export PAGER=most
export BROWSER=elinks
@ -140,7 +160,8 @@ 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"
alias devu="${HOME}/devu/devu/devu"
alias gcle='gitlab-ci-local'
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh
@ -183,3 +204,4 @@ case $HOST in
#source /usr/bin/virtualenvwrapper.sh
;;
esac