From bbe4b2f0989f07082950c0fa1efafe4ac981e12d Mon Sep 17 00:00:00 2001 From: Breizh Date: Wed, 5 Feb 2020 19:19:49 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .Xresources | 8 ++++---- .bash_profile | 10 ++-------- .config/base16-shell | 2 +- .config/i3/config | 2 +- .local/bin/tabColor | 7 +++---- 5 files changed, 11 insertions(+), 18 deletions(-) diff --git a/.Xresources b/.Xresources index ce7100d..267f1e7 100644 --- a/.Xresources +++ b/.Xresources @@ -60,7 +60,7 @@ XTerm*selectToClipboard: true URxvt.font: xft:IBM Plex Mono:size=11,xft:DejaVu Sans Mono:size=11 !URxvt.font: xft:xos4 Terminus:pixsize=14,xft:DejaVu Sans Mono:pixsize=14 !URxvt.letterSpace: -1 -URxvt.depth: 32 +!URxvt.depth: 32 !URxvt.background: [100]#000000 URxvt*scrollBar: true @@ -72,8 +72,8 @@ URxvt*saveLines: 0 ! for 'fake' transparency (without Compton) uncomment the following three lines !URxvt*inheritPixmap: true -URxvt*transparent: true -URxvt*shading: 25 +!URxvt*transparent: true +!URxvt*shading: 25 !URxvt*blurRadius: 24x24 ! other possible settings: @@ -153,7 +153,7 @@ URxvt*cursorUnderline: true ! URxvt*imFont: fontname ! URxvt*title: string ! URxvt*iconName: string -! URxvt*buffered: boolean +! URxvt*buffered: false ! URxvt*depth: number ! URxvt*visual: number ! URxvt*transient-for: windowid diff --git a/.bash_profile b/.bash_profile index e9018e5..00a5937 100644 --- a/.bash_profile +++ b/.bash_profile @@ -2,25 +2,21 @@ # ~/.bash_profile # - [[ -f ~/.extend.bash_profile ]] && . ~/.extend.bash_profile [[ -f ~/.bashrc ]] && . ~/.bashrc export VISUAL=vim export EDITOR=vim export PAGER=less -export PATH=~/.gem/ruby/2.5.0/bin:~/.local/bin:$PATH +export PATH=~/.local/bin:$PATH -#export LANG=fr_CA.UTF-8 -#export LANGUAGE=fr_CA:fr_FR:fr:en -export HASTE_SERVER="https://haste.breizh.me" +export HASTE_SERVER="https://haste.breizh.pm" export MPD_HOST="$HOME/.mpd/socket" export KRESUS_PYTHON_EXEC=python export MAGICK_TMPDIR="$HOME/.cache/ImageMagick/" eval $(ssh-agent -s) - if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then export XDG_CURRENT_DESKTOP=i3 export GTK2_RC_FILES="$HOME/.gtkrc-2.0" @@ -31,8 +27,6 @@ if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then startx logout elif [ "$XDG_VTNR" -ne 6 ]; then -# ~/.local/bin/vconsole -# play -q "$HOME/Musique/WELCOME BACK.wav" & export BROWSER=elinks fish logout diff --git a/.config/base16-shell b/.config/base16-shell index efa06ce..ce8e1e5 160000 --- a/.config/base16-shell +++ b/.config/base16-shell @@ -1 +1 @@ -Subproject commit efa06ce77a7fa46cca2bfc07932db21971de010b +Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1 diff --git a/.config/i3/config b/.config/i3/config index 2383112..7dd47a9 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -396,7 +396,7 @@ exec --no-startup-id sudo radeontop -d /dev/shm/radeontop #exec --no-startup-id mpv ~/Vidéos/wallpapers/pirate_flag.mp4 --wid 0 --loop-file -quiet #exec --no-startup-id setxkbmap fr oss exec --no-startup-id nm-applet -exec --no-startup-id steam-native -silent -language french +exec --no-startup-id steam-native -silent -noverifyfiles -language french #exec --no-startup-id sleep 5 && qbittorrent #exec --no-startup-id gdfs $HOME/.google_drive $HOME/Google_Drive/ #exec --no-startup-id transmission-gtk -m diff --git a/.local/bin/tabColor b/.local/bin/tabColor index f82da76..c3f40aa 100755 --- a/.local/bin/tabColor +++ b/.local/bin/tabColor @@ -4,14 +4,13 @@ TEXT=" Bash " ; # Couleur du texte : -declare -a FG=('' '1' '4' '5' '7' '30' '31' '32' \ -'33' '34' '35' '36' '37') ; +declare -a FG=('' $(seq 1 7) $(seq 30 37) $(seq 90 97)) echo # Première ligne : printf "FG \ BG\t%${#TEXT}s" ; -for bg in {40..47} ; do +for bg in {40..47} {100..107}; do printf "%${#TEXT}s" "${bg} " ; done echo ; @@ -19,7 +18,7 @@ echo ; # Création du tableau de présentation des combinaisons : for fg in ${!FG[*]} ; do echo -ne "${FG[fg]}\t\033[${FG[fg]}m$TEXT" ; - for bg in {40..47} ; do + for bg in {40..47} {100..107}; do echo -ne "\033[${FG[fg]};${bg}m$TEXT\033[0m" ; done echo ;