Mise à jour

This commit is contained in:
Breizh 2020-02-05 19:19:49 +01:00
parent 24a677f767
commit bbe4b2f098
5 changed files with 11 additions and 18 deletions

View File

@ -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

View File

@ -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

@ -1 +1 @@
Subproject commit efa06ce77a7fa46cca2bfc07932db21971de010b
Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1

View File

@ -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

View File

@ -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 ;