diff --git a/config/i3/config b/config/i3/config index ece5de8..98a525d 100644 --- a/config/i3/config +++ b/config/i3/config @@ -133,27 +133,27 @@ bindsym $mod+a focus parent bindsym $mod+q focus child # Workspace names -set $WS1 1 Édition -set $WS2 2 Éxecution -set $WS3 3 Organisation -set $WS4 4 Référence -set $WS5 5 Divers 1 -set $WS6 6 Divers 2 -set $WS7 7 Contact -set $WS8 8 Social -set $WS9 9 Veille +set $WS1 1 Édition +set $WS2 2 Éxecution +set $WS3 3 Organisation +set $WS4 4 Référence +set $WS5 5 Divers 1 +set $WS6 6 Divers 2 +set $WS7 7 Contact +set $WS8 8 Social +set $WS9 9 Veille set $WS10 10 Musique # Workspace output -workspace "$WS1" output LVDS1 -workspace "$WS2" output VGA1 -workspace "$WS3" output LVDS1 -workspace "$WS4" output VGA1 -workspace "$WS5" output LVDS1 -workspace "$WS6" output VGA1 -workspace "$WS7" output LVDS1 -workspace "$WS8" output VGA1 -workspace "$WS9" output LVDS1 +workspace "$WS1" output LVDS1 +workspace "$WS2" output VGA1 +workspace "$WS3" output LVDS1 +workspace "$WS4" output VGA1 +workspace "$WS5" output LVDS1 +workspace "$WS6" output VGA1 +workspace "$WS7" output LVDS1 +workspace "$WS8" output VGA1 +workspace "$WS9" output LVDS1 workspace "$WS10" output VGA1 # switch to workspace diff --git a/config/i3/dmenu_cmd b/config/i3/dmenu_cmd index e1d3599..a02a9b2 100755 --- a/config/i3/dmenu_cmd +++ b/config/i3/dmenu_cmd @@ -1,2 +1,2 @@ #!/bin/sh -dmenu -fn 'DejaVu Sans Mono-10' -nb '#222222' -nf '#888888' -sb '#4E9C00' -sf '#FFFFFF' -l 8 -f -i -h 19 "$@" +dmenu -fn 'DejaVu Sans Mono-10' -nb '#48483e' -nf '#f1ebeb' -sb '#8fc029' -sf '#272822' -l 8 -f -i -h 19 "$@" diff --git a/config/i3/sshmenu b/config/i3/sshmenu index 00cf7fa..7b3fdc5 100755 --- a/config/i3/sshmenu +++ b/config/i3/sshmenu @@ -1,9 +1,9 @@ #!/bin/bash if [ "$1" == 'root' ]; then a=" (root)" - b="sudo -E " + b="-t 'sudo -s'" fi machine=$(cat ~/.ssh/config | grep '^Host ' | cut -d ' ' -f 2 | grep -v '*' | sort | $HOME/.config/i3/dmenu_cmd -p "SSH$a to ") if [ ! -z $machine ]; then - xterm -e "ssh $machine -t '${b}bash --login'" + xterm -e "ssh $machine $b" fi