dgy
/
hexagons
Archived
1
0
Fork 0

preparar para la reinstalada

This commit is contained in:
deadguy 2018-08-13 14:57:22 -03:00
parent b0f32f14c4
commit 87f9d40b93
6 changed files with 28 additions and 13 deletions

View File

@ -38,8 +38,8 @@
URxvt.font: xft:sarasatermj:size=10
!URxvt.font: -xos4-terminus-medium-r-normal--12-120-72-72-c-60-iso10646-1
URxvt.perl-ext-common: default,clipboard,url-select
URxvt.urlLauncher: /home/deadguy/bin/webcap
URxvt.url-select.launcher: /home/deadguy/bin/webcap
URxvt.urlLauncher: /usr/bin/firefox -new-tab
URxvt.url-select.launcher: /usr/bin/firefox -new-tab
URxvt.url-select.underline: true
URxvt.urlButton: 1
URxvt.colorUL: #4682B4

View File

@ -27,7 +27,6 @@ bspc config single_monocle true
bspc config remove_unplugged_monitors true
bspc config remove_disabled_monitors true
bspc config ignore_ewmh_focus true
bspc config auto_cancel true
bspc config honor_size_hints false
bspc config directional_focus_tightness low
bspc config initial_polarity second_child
@ -47,7 +46,6 @@ xrdb -merge "${HOME}/.Xresources"
# Colores
bspc config normal_border_color "$(get_xrdb color0)"
bspc config focused_border_color "$(get_xrdb color3)"
bspc config presel_border_color "$(get_xrdb color10)"
bspc config border_width $b_width
# Flotantes

View File

@ -0,0 +1,19 @@
[Settings]
gtk-application-prefer-dark-theme=1
gtk-cursor-theme-name=Alkano
gtk-theme-name=8089
gtk-icon-theme-name=ArchLabs-Light
gtk-font-name=IBM Plex Sans weight=453 9
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR
gtk-button-images=0
gtk-menu-images=1
gtk-enable-event-sounds=0
gtk-enable-input-feedback-sounds=0
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle=hintmedium
gtk-xft-rgba=rgb
gtk-modules=gail:atk-bridge
gtk-decoration-layout=menu:

View File

@ -37,7 +37,7 @@ set uncollapse_jump # no collapse on unread message
set sort_re # thread based on regex
set reply_regexp = "^(([Rr][Ee]?(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*"
set quote_regexp = "^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
set new_mail_command="notify-send -a neomutt -u normal 'New Email' '%n new messages, %u unread.' &"
set new_mail_command="notify-send -a neomutt -u normal 'You\'ve Got Mail' '%n new messages, %u unread.' &"
set date_format ="%a %d %b %R"
#set index_format ="%2C %Z %?X?A& ? %D %-45.45F %s (%-4.4c)"
set index_format="%4C %Z %{%b %d %R} %-15.15L (%?l?%4l&%4c?) %s"
@ -142,8 +142,8 @@ macro index,pager <F2> '<sync-mailbox><enter-command>source /home/deadguy/.confi
macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
#sync email
macro index O "<shell-escape>$HOME/bin/correo<enter>" "run offlineimap to sync all mail"
macro index o "<shell-escape>$HOME/bin/correo -qf INBOX<enter>" "run offlineimap to sync inbox"
macro index O "<shell-escape>$HOME/bin/correo.sh<enter>" "run offlineimap to sync all mail"
macro index o "<shell-escape>$HOME/bin/correo.sh -qf INBOX<enter>" "run offlineimap to sync inbox"
#copy/move dialogs
macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"

View File

@ -1,5 +1,3 @@
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
exec startx
fi
eval `dircolors -b ~/.config/zsh/LS_COLORS`
fi

View File

@ -11,15 +11,15 @@ then
for account in ~/.mail/*
do
[[ -e $account ]] || break
#List unread messages newer than last mailsync and count them
# List unread messages newer than last mailsync and count them
newcount=$(find "$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/mailsynclastrun 2> /dev/null | wc -l)
if [ "$newcount" -gt 0 ]
then
cuenta=$(echo "$account" | rev | cut -d"/" -f1-1 | rev)
notify-send "$newcount new message(s) in $cuenta"
notify-send-headless -a neomutt "You've Got Mail" "$newcount new message(s) in $cuenta"
fi
done
#Create a touch file that indicates the time of the last run of mailsync
# Create a touch file that indicates the time of the last run of mailsync
notmuch new
touch ~/.config/mutt/etc/mailsynclastrun
else