commit da131248d24550c822ea6cbaac1734e1dc982941
parent a0d7f3ef057624548116d9ab57e578147580dc16
Author: pyratebeard <root@pyratebeard.net>
Date: Tue, 8 Mar 2022 20:20:10 +0000
updates
tidy up crontab and add some more jobs. fix dunst geometry. add graph to git config aliases. set spellcap in vim mutiny colours
Diffstat:
4 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/cron/var/spool/cron/pyratebeard b/cron/var/spool/cron/pyratebeard
@@ -2,26 +2,29 @@
*/30 * * * * $HOME/bin/checkip
# daily backup of specified items
-0 4 * * * $HOME/bin/daily_backup
+0 4 * * * $HOME/bin/sdd -d
# check email every hour and notify. full sync daily
0 * * * * $HOME/bin/mail_sync
0 1 * * * offlineimap
# update rss a few times a day
-0 8 * * * $HOME/bin/boat_sync
-0 11 * * * $HOME/bin/boat_sync
-0 14 * * * $HOME/bin/boat_sync
+0 8,11,14 * * * $HOME/bin/boat_sync
# change bg every hour
#0 * * * * $HOME/bin/bgchange
# check weather twice a day
-0 8 * * * $HOME/bin/weather
-0 14 * * * $HOME/bin/weather
+0 8,14 * * * $HOME/bin/weather
# download latest powerzone show
0 8 * * fri $HOME/bin/powerdl
# weekly comic pack download
0 19 * * thu $HOME/tmp/comic_download/comicdl.sh
+
+# daily readlist bookmark list generator
+0 23 * * * $HOME/src/pyratestart/genreadlist.sh
+
+# hourly src git repo fetch
+0 * * * * $HOME/bin/src_fetch
diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc
@@ -33,7 +33,11 @@
# the top and down respectively.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
- geometry = "300x5+810+100"
+ #geometry = "300x5+810+100"
+ width = "0"
+ height = "150"
+ origin = "top-left"
+ offset = "810x100"
# Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes
@@ -50,7 +54,7 @@
# The height of the entire notification. If the height is smaller
# than the font height and padding combined, it will be raised
# to the font height and padding.
- notification_height = 0
+ #notification_height = 0
# Draw a line of "separator_height" pixel height between two
# notifications.
@@ -200,7 +204,7 @@
# Print a notification on startup.
# This is mainly for error detection, since dbus (re-)starts dunst
# automatically after a crash.
- startup_notification = false
+ #startup_notification = false
### Legacy
diff --git a/git/.gitconfig b/git/.gitconfig
@@ -6,6 +6,8 @@
name = pyratebeard
username = pyratebeard
signingkey = 0xC7877C715113A16D
+[alias]
+ graphgpg = log --graph --color --pretty=format:"%C(yellow)%H%C(green)%d%C(reset)%n%x20%cd%n%x20%cn%C(blue)%x20(%ce)%x20%C(cyan)[gpg:%GK%x20%G?]%C(reset)%n%x20%s%n"
[color "status"]
added = green bold
changed = cyan
diff --git a/vim/.vim/colors/mutiny.vim b/vim/.vim/colors/mutiny.vim
@@ -47,6 +47,7 @@ hi SignColumn term=NONE cterm=NONE ctermfg=NONE ctermbg=235
hi Special term=NONE cterm=NONE ctermfg=2 ctermbg=NONE
hi SpecialKey term=NONE cterm=NONE ctermfg=3 ctermbg=NONE
hi SpellBad term=NONE cterm=NONE ctermfg=15 ctermbg=1
+hi SpellCap term=NONE cterm=NONE ctermfg=15 ctermbg=4
hi Statement term=NONE cterm=NONE ctermfg=251 ctermbg=NONE
hi StatusLine term=NONE cterm=NONE ctermfg=238 ctermbg=NONE
hi String term=NONE cterm=NONE ctermfg=11 ctermbg=NONE