diff --git a/Utils/monitor.sh b/Utils/monitor.sh deleted file mode 100755 index dcdeb4d..0000000 --- a/Utils/monitor.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -if [ $# -lt 1 ] -then - echo "Usage : $0 [dual|extern|laptop]" - exit -fi - -case "$1" in - - "dual") - xrandr --output LVDS1 --auto --rotate normal --pos 0x0 \ - --output VGA1 --auto --rotate normal --right-of LVDS1 - ;; - - "laptop") - xrandr --output LVDS1 --auto --rotate normal --pos 0x0 \ - --output VGA1 --off - ;; - - "extern") - xrandr --output LVDS1 --off \ - --output VGA1 --auto --rotate normal - ;; -esac - -~/Pictures/wallpapers/chooseWP.sh diff --git a/Utils/monitorOff.sh b/Utils/monitorOff.sh deleted file mode 100755 index 2a01805..0000000 --- a/Utils/monitorOff.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -xset dpms force off diff --git a/Utils/octopus.sh b/Utils/octopus.sh index eb23ddd..942c088 100755 --- a/Utils/octopus.sh +++ b/Utils/octopus.sh @@ -41,6 +41,10 @@ case $1 in --output VGA1 --auto --rotate normal \ --right-of LVDS1 ;; + "clone") + xrandr --output LVDS1 --auto \ + --output VGA1 --auto --same-as LVDS1 + ;; "off") xset dpms force off ;; diff --git a/bashrc b/bashrc index c5c9033..7615b15 100644 --- a/bashrc +++ b/bashrc @@ -130,6 +130,7 @@ OCTOPUS=~/.my_utils/octopus.sh alias dual='$OCTOPUS monitor dual' alias laptop='$OCTOPUS monitor laptop' alias extern='$OCTOPUS monitor extern' +alias clone='$OCTOPUS monitor clone' alias volup='$OCTOPUS volume up' alias voldown='$OCTOPUS volume down' diff --git a/install.sh b/install.sh index 1bf3982..22729f3 100755 --- a/install.sh +++ b/install.sh @@ -11,8 +11,6 @@ function deploy_for_desktop() cd ~ if [ ! -d "~/.my_utils" ]; then mkdir ~/.my_utils; fi; cd ~/.my_utils - ln -s $WAI/Utils/monitor.sh ./monitor.sh - ln -s $WAI/Utils/monitorOff.sh ./monitorOff.sh ln -s $WAI/Utils/track.sh ./track.sh ln -s $WAI/Utils/blink.sh ./blink.sh ln -s $WAI/Utils/octopus.sh ./octopus.sh diff --git a/mutt/muttrc b/mutt/muttrc index e93b262..5d8f523 100644 --- a/mutt/muttrc +++ b/mutt/muttrc @@ -1,13 +1,13 @@ ############################ ##### ATTENTION - /!\ ###### # Fichier sur git, # -# Accessible publijuement # +# Accessible publiquement # # Ne pas mettre de mdp en # # clair ! # ############################ -set from = "Frank@Villaro-Dixon.eu" +set from = "Frank Villaro-Dixon " set realname = "Frank Villaro-Dixon" set smtp_url = "smtp://frank_mail@villaro-dixon.eu:587/" @@ -55,10 +55,8 @@ set auto_tag = yes set abort_unmodified=ask-yes #réponse non modifiée set fast_reply="yes" # Yeah, I know what person I want to reply to! - set attribution="On %d, %n, wrote %c characters saying:" - -set indent_string=">" +set indent_string="> " #set max_line_length = 80 #set stuff_quoted @@ -75,6 +73,8 @@ auto_view text/html bind editor ^T complete bind editor noop +set pager_stop="yes" + # Gmail-style keyboard shortcuts #macro index,pager y "unset trash\n " "Gmail archive message" #macro index,pager d "set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n " "Gmail delete message" diff --git a/vim/vimrc b/vim/vimrc index 3e527d8..54f760e 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -145,7 +145,7 @@ inoremap § /<+.\{-1,}+>c/+>/e "Automatic line wrap/br when writing mails in mutt -au BufRead /dev/shm/mutt-* set tw=80 fo+=aw +au BufRead /dev/shm/mutt-* set tw=80 fo+=aw noautoindent "Automatic documentation autocmd BufNewFile,BufRead *.py set keywordprg=pydoc