summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/flameshot/flameshot.ini2
-rw-r--r--.config/newsboat/urls1
-rw-r--r--.config/nvim/init.vim3
-rw-r--r--.config/pyssg/pyssgrc9
-rw-r--r--.config/shell/aliasrc3
-rw-r--r--.config/shell/profile3
-rw-r--r--.config/udiskie/config.yml2
-rw-r--r--.config/x11/xprofile1
-rwxr-xr-x.local/bin/lsync10
9 files changed, 26 insertions, 8 deletions
diff --git a/.config/flameshot/flameshot.ini b/.config/flameshot/flameshot.ini
index 444c8fb..2cbc1f1 100644
--- a/.config/flameshot/flameshot.ini
+++ b/.config/flameshot/flameshot.ini
@@ -1,7 +1,7 @@
[General]
contrastOpacity=188
disabledTrayIcon=false
-drawColor=#00ffe6
+drawColor=#00ff39
drawThickness=2
filenamePattern=SS_%d%b%y_%I%M%S
saveAfterCopyPath=/home/lz/pix/ss
diff --git a/.config/newsboat/urls b/.config/newsboat/urls
index 81e010d..5ca78cc 100644
--- a/.config/newsboat/urls
+++ b/.config/newsboat/urls
@@ -1,4 +1,5 @@
---BLOGS---
https://blog.luevano.xyz/rss.xml personal
+https://art.luevano.xyz/rss.xml personal
https://blog.lmcj.xyz/rss.xml
https://lukesmith.xyz/rss.xml
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 357ccba..d9f70c9 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -78,6 +78,9 @@ set showcmd
" Plug 'Yggdroot/indentLine'
" No longer needed as synstastic includes flake8 linter.
" Plug 'nvie/vim-flake8'
+ " Jinja support
+ Plug 'lepture/vim-jinja'
+ au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm set ft=jinja
" Java
Plug 'uiiaoo/java-syntax.vim'
diff --git a/.config/pyssg/pyssgrc b/.config/pyssg/pyssgrc
index d919316..d02a1b4 100644
--- a/.config/pyssg/pyssgrc
+++ b/.config/pyssg/pyssgrc
@@ -1,6 +1,9 @@
-SRC_PATH=src
-DST_PATH=dst
-BASE_URL=https://blog.luevano.xyz
+SRC=src
+DST=dst
+PLT=plt
+URL=https://blog.luevano.xyz
+STATIC_URL=https://static.luevano.xyz
+DEFAULT_IMAGE_URL=/images/b/default.png
TITLE=Luévano's Blog
DATE_FORMAT=%a, %b %d, %Y @ %H:%M %Z
LIST_DATE_FORMAT=%b %d
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index e69d551..cd8dd16 100644
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -25,3 +25,6 @@ alias tlmgr="$TEXMFDIST/scripts/texlive/tlmgr.pl --usermode"
# MyCli
alias mycli="mycli --myclirc $HOME/.config/mycli/myclirc"
+
+# monero
+alias monerod="monerod --data-dir "$XDG_DATA_HOME"/bitmonero"
diff --git a/.config/shell/profile b/.config/shell/profile
index a7dc0a8..9a0859d 100644
--- a/.config/shell/profile
+++ b/.config/shell/profile
@@ -125,6 +125,9 @@ export QT_AUTO_SCREEN_SCALE_FACTOR=0
# This is for blank window on window managers.
export _JAVA_AWT_WM_NONREPARENTING=1
+ ## Crypto stuff.
+export ELECTRUMDIR="$XDG_DATA_HOME/electrum"
+
##--Start X automatically--##
# Following: https://wiki.archlinux.org/index.php/Xinit#Autostart_X_at_login
diff --git a/.config/udiskie/config.yml b/.config/udiskie/config.yml
index afc483e..6a80df6 100644
--- a/.config/udiskie/config.yml
+++ b/.config/udiskie/config.yml
@@ -5,7 +5,7 @@
program_options:
tray: true
menu: flat
- automount: false
+ automount: true
notify: true
# password_cache: 30
# file_manager: xdg-open
diff --git a/.config/x11/xprofile b/.config/x11/xprofile
index 6b13941..cd2ba87 100644
--- a/.config/x11/xprofile
+++ b/.config/x11/xprofile
@@ -16,6 +16,7 @@ flameshot &
# pulseaudio --start &
pasystray &
setsid sxhkd &
+syncthingtray --wait &
# At the end, start the WM.
exec bspwm
diff --git a/.local/bin/lsync b/.local/bin/lsync
index d414703..cbafacc 100755
--- a/.local/bin/lsync
+++ b/.local/bin/lsync
@@ -1,10 +1,14 @@
#!/bin/sh
# Push to luevano.xyz
-# This pushes everything! (except for blog, since it needs a bit more management)
+# This pushes everything! (except for blog and art, since it needs a bit more management)
echo "rsync: pushing (U) local (lz) to webserver (lzserver). (luevano.xyz)"
-rsync -rtuvP --delete-after --exclude-from=$HOME/dox/www/luevano.xyz/.rsyncignore $HOME/dox/www/luevano.xyz/ luevanor:/var/www/
+rsync -rtuvPL --delete-after --exclude-from=$HOME/dox/www/luevano.xyz/.rsyncignore $HOME/dox/www/luevano.xyz/ luevanor:/var/www/
# This pushes the blog.
echo "rsync: pushing (U) local (lz) to webserver (lzserver). (blog.luevano.xyz)"
-rsync -rtuvP --delete-after $HOME/dox/www/luevano.xyz/blog/dst/ luevanor:/var/www/blog/
+rsync -rtuvPL --delete-after $HOME/dox/www/luevano.xyz/blog/dst/ luevanor:/var/www/blog/
+
+# This pushes the art.
+echo "rsync: pushing (U) local (lz) to webserver (lzserver). (art.luevano.xyz)"
+rsync -rtuvPL --delete-after $HOME/dox/www/luevano.xyz/art/dst/ luevanor:/var/www/art/