Compare commits

..

No commits in common. "efac8270eb799b744b6008816b0ca18439c18f91" and "6fad6e4b2034df4e4104cb61487746b5dd66e66c" have entirely different histories.

6 changed files with 36 additions and 38 deletions

1
.gitignore vendored
View File

@ -4,4 +4,3 @@ _vim/.netrwhist
_config/auto_sync*/*.pid _config/auto_sync*/*.pid
_vim/bundle _vim/bundle
_i3__abraracourcix/logfile _i3__abraracourcix/logfile
_i3__oda.armorique.lan/logfile

View File

@ -16,8 +16,8 @@ export EDITOR=vim
export VISUAL=$EDITOR export VISUAL=$EDITOR
# pager man conserve affichage à l'écran # pager man conserve affichage à l'écran
export MANPAGER="less -X" export MANPAGER="less -X"
# youtube dl default # youtube dl default dl dir FIXME default in youtube
export YDL_TARGET=$HOME/tmp export YDL_TARGET=$HOME
##### COLORS ##### ##### COLORS #####

View File

@ -133,13 +133,9 @@ bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9 bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10 bindsym $mod+Shift+0 move container to workspace 10
# volume; keys F5 and F6 # volume
bindcode $mod+71 exec obsd-vol.sh -16 bindcode $mod+48 exec obsd-vol.sh -16
bindcode $mod+72 exec obsd-vol.sh 16 bindcode $mod+51 exec obsd-vol.sh 16
# brightness: keys F1 F2
bindcode $mod+67 exec xbacklight -10
bindcode $mod+68 exec xbacklight +10
# reload the configuration file # reload the configuration file
bindsym $mod+Shift+c reload bindsym $mod+Shift+c reload
@ -186,8 +182,6 @@ client.urgent $base02 $base08 $base00 $base0F
bar { bar {
position top position top
status_command i3status -c .i3/i3status.conf status_command i3status -c .i3/i3status.conf
font pango:monospace 8
separator_symbol ""
colors { colors {
separator $base03 separator $base03
background $base01 background $base01

View File

@ -7,56 +7,58 @@
# If the above line is not correctly displayed, fix your editor first! # If the above line is not correctly displayed, fix your editor first!
general { general {
output_format = "i3bar" output_format = "i3bar"
colors = true colors = true
interval = 5 interval = 5
} }
order += "battery all"
order += "ipv6" order += "ipv6"
order += "disk /" order += "disk /"
order += "disk /home"
order += "wireless _first_" order += "wireless _first_"
order += "ethernet _first_" order += "ethernet _first_"
order += "load" #order += "load"
order += "cpu_temperature cpu0"
order += "cpu_temperature acpitz0" order += "cpu_temperature acpitz0"
order += "volume master" order += "volume master"
order += "battery all"
order += "tztime local" order += "tztime local"
cpu_temperature cpu0 {
format = "CPU: %degrees ⁰C"
path = "cpu0"
}
cpu_temperature acpitz0 { cpu_temperature acpitz0 {
format = " %degrees ⁰C" format = "TZ: %degrees ⁰C"
} }
wireless _first_ { wireless _first_ {
format_up = " (%essid) %ip" format_up = "W: (%essid) %ip"
format_down = " down" format_down = "W: down"
} }
ethernet _first_ { ethernet _first_ {
format_up = " %ip" format_up = "E: %ip"
format_down = " down" format_down = "E: down"
} }
battery all { battery all {
format = "%status %percentage %remaining" format = "%status %percentage \% %remaining"
} }
tztime local { tztime local {
locale = "fr_FR.UTF-8"
format = "%A %e %B %H:%M" format = "%A %e %B %H:%M"
} }
load { load {
format = " %5min" format = "%1min"
} }
disk "/" { disk "/" {
format = " / %avail" format = "%avail"
}
disk "/home" {
format = " /home %avail"
} }
volume master { volume master {
format = " %volume" format = "vol: %volume"
} }

View File

@ -7,10 +7,15 @@ export PATH HOME TERM
# if running bash # if running bash
if [ -n "$BASH_VERSION" ]; then if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists # include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc" . "$HOME/.bashrc"
fi fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi fi
export LC_CTYPE="en_US.UTF-8" export LC_CTYPE="en_US.UTF-8"

View File

@ -1,4 +1,3 @@
export PATH="$HOME/bin:$PATH"
export LC_CTYPE="en_US.UTF-8" export LC_CTYPE="en_US.UTF-8"
export TERMINAL=/usr/local/bin/roxterm export TERMINAL=/usr/local/bin/roxterm
xrdb -merge ~/.Xresources xrdb -merge ~/.Xresources
@ -27,5 +26,4 @@ xidle -timeout 300 -program "/usr/X11R6/bin/xlock -mode blank" &
xrandr --dpi 156 xrandr --dpi 156
xcompmgr -c -n & xcompmgr -c -n &
setxkbmap us -option compose:caps setxkbmap us -option compose:caps
echo "Starting at $(date)" >> ~/.i3/logfile exec /usr/local/bin/i3
exec /usr/local/bin/i3 >> ~/.i3/logfile