Compare commits
7 Commits
9cb06b490f
...
zou
Author | SHA1 | Date | |
---|---|---|---|
e40ef14b07 | |||
c61451a8e1 | |||
4823af9ef1 | |||
f8dd2ce568 | |||
bbb726c9e1 | |||
3de58bb297 | |||
c13e8b3d9d |
@ -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
|
||||||
|
@ -214,7 +214,7 @@ bindsym XF86Sleep exec systemctl suspend
|
|||||||
###
|
###
|
||||||
|
|
||||||
# Transparency (need picom)
|
# 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)
|
# DBUS daemon (needed for keyboard applet and more I think)
|
||||||
#exec --no-startup-id /usr/lib/gnome-settings-daemon/gnome-settings-daemon
|
#exec --no-startup-id /usr/lib/gnome-settings-daemon/gnome-settings-daemon
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
@ -77,6 +77,51 @@ POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
|
|||||||
POWERLEVEL9K_SHORTEN_DELIMITER=""
|
POWERLEVEL9K_SHORTEN_DELIMITER=""
|
||||||
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_from_right"
|
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
|
||||||
|
export SSH_ASKPASS=qt4-ssh-askpass
|
||||||
|
export AUTEUR="Olivier DOSSMANN"
|
||||||
|
export DEFAULT_USER="od"
|
||||||
|
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
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
export EDITOR='vim'
|
||||||
|
else
|
||||||
|
export EDITOR='nvim'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enlève le prompt de droite après avoir appuyé sur Entrée
|
||||||
|
setopt transient_rprompt
|
||||||
|
|
||||||
# Compilation flags
|
# Compilation flags
|
||||||
# export ARCHFLAGS="-arch x86_64"
|
# export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
@ -88,6 +133,35 @@ POWERLEVEL9K_SHORTEN_STRATEGY="truncate_from_right"
|
|||||||
# Example aliases
|
# Example aliases
|
||||||
# alias zshconfig="mate ~/.zshrc"
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
alias e="${EDITOR}"
|
||||||
|
alias r="${EDITOR} -R"
|
||||||
|
alias sm="sublime_merge"
|
||||||
|
alias vi="${EDITOR}"
|
||||||
|
alias mem='free -mt'
|
||||||
|
alias df='df -hT'
|
||||||
|
alias ls='exa'
|
||||||
|
alias ll='exa -l'
|
||||||
|
alias l='exa -F'
|
||||||
|
alias rgrep='rg --no-ignore'
|
||||||
|
export GREP_COLORS='ms=01;33:mc=01;33:s1=:cx=:fn=37;ln=32:bn=32:se=36'
|
||||||
|
alias diff='colordiff'
|
||||||
|
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||||
|
# évite de faire des erreurs
|
||||||
|
alias rm='rm -i'
|
||||||
|
alias cp='cp -i'
|
||||||
|
alias grep='grep --color'
|
||||||
|
# requêtes
|
||||||
|
alias https='http --verify=no --default-scheme=https'
|
||||||
|
# pytest
|
||||||
|
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}/devu/devu/devu"
|
||||||
|
alias gcle='gitlab-ci-local'
|
||||||
|
|
||||||
# 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
|
||||||
@ -105,3 +179,4 @@ case $HOST in
|
|||||||
#source /usr/bin/virtualenvwrapper.sh
|
#source /usr/bin/virtualenvwrapper.sh
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
3
.zshenv
3
.zshenv
@ -23,7 +23,8 @@ export PATH
|
|||||||
export LANG=fr_FR.UTF-8
|
export LANG=fr_FR.UTF-8
|
||||||
|
|
||||||
# Reading / Browse (manpages, websites, etc.)
|
# Reading / Browse (manpages, websites, etc.)
|
||||||
export PAGER=most
|
export PAGER="bat"
|
||||||
|
export MANPAGER="nvim +Man!"
|
||||||
export BROWSER=elinks
|
export BROWSER=elinks
|
||||||
|
|
||||||
# SSH
|
# SSH
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# battery
|
||||||
|
#
|
||||||
|
# Penser à modifier la variable dans ~/.profile
|
||||||
|
|
||||||
HEART_FULL=♥
|
HEART_FULL=♥
|
||||||
HEART_EMPTY=♡
|
HEART_EMPTY=♡
|
||||||
|
15
bin/launcher.sh
Normal file
15
bin/launcher.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# launcher
|
||||||
|
#
|
||||||
|
# TODO: toujours mettre des \n entre les résultats !
|
||||||
|
|
||||||
|
res=()
|
||||||
|
|
||||||
|
# Find all programs in $PATH.
|
||||||
|
res+=$(echo -n "$PATH" | xargs -d: -I{} -r -- find -L {} -maxdepth 1 -mindepth 1 -type f -executable -printf '%P\n' 2>/dev/null)
|
||||||
|
res+=$(echo -e "\ncoucou")
|
||||||
|
|
||||||
|
for resultat in "${res[@]}"; do
|
||||||
|
echo "$resultat"
|
||||||
|
done | fzf|sh
|
3
bin/netflix
Executable file
3
bin/netflix
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
firefox --kiosk "https://netflix.com/"
|
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
# random_wallpaper
|
# random_wallpaper
|
||||||
#
|
#
|
||||||
# Requirement: feh (apt install feh)
|
# Requirement: feh (apt install feh) - for Xorg
|
||||||
|
# Requirement: swaybg - for Wayland
|
||||||
|
|
||||||
directory="$HOME/wallpapers"
|
directory="$HOME/wallpapers"
|
||||||
minutes=15
|
minutes=15
|
||||||
@ -50,6 +51,7 @@ while true; do
|
|||||||
# Change background
|
# Change background
|
||||||
file="${array_files["$NUMBER"]}"
|
file="${array_files["$NUMBER"]}"
|
||||||
if "${is_wayland}"; then
|
if "${is_wayland}"; then
|
||||||
|
# Use of swaybg program (used with swaymsg)
|
||||||
$PROGRAM output "*" bg "$directory/$file" fill
|
$PROGRAM output "*" bg "$directory/$file" fill
|
||||||
else
|
else
|
||||||
feh --bg-fill "$directory/$file"
|
feh --bg-fill "$directory/$file"
|
||||||
|
6
bin/rec1
Executable file
6
bin/rec1
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# change number by 2 for screen 2
|
||||||
|
number=1
|
||||||
|
|
||||||
|
wf-recorder -o $(swaymsg -t get_outputs |grep "DP"|head -n ${number}|cut -d '"' -f 4) -f ~/screens/$(date +'%Y-%m-%d-%s')_screencast.mkv
|
3
bin/webserver
Executable file
3
bin/webserver
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
python3 -m http.server "$@"
|
Reference in New Issue
Block a user