aboutsummaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/dunst/dunstrc2
-rwxr-xr-x.config/herbstluftwm/autostart12
-rw-r--r--.config/nitrogen/bg-saved.cfg2
-rw-r--r--.config/nitrogen/nitrogen.cfg4
-rw-r--r--.config/ranger/rifle.conf2
-rwxr-xr-x.config/sxiv/exec/key-handler14
6 files changed, 28 insertions, 8 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
index 8c8cab2..f445550 100644
--- a/.config/dunst/dunstrc
+++ b/.config/dunst/dunstrc
@@ -125,7 +125,7 @@
[frame]
width = 1
- color = "#d64937"
+ color = "#a6754c"
[shortcuts]
# shortcuts are specified as [modifier+][modifier+]...key
diff --git a/.config/herbstluftwm/autostart b/.config/herbstluftwm/autostart
index ee2994c..e543bb9 100755
--- a/.config/herbstluftwm/autostart
+++ b/.config/herbstluftwm/autostart
@@ -1,9 +1,13 @@
#!/bin/bash
# define colours
-bg_normal='#2d2d2d'
+#bg_normal='#2d2d2d'
+#fg_normal='#dcdcdc'
+#bg_focus='#d64937'
+#fg_focus='#fcfcfc'
+bg_normal='#2b2b2b'
fg_normal='#dcdcdc'
-bg_focus='#d64937'
+bg_focus='#a6754c'
fg_focus='#fcfcfc'
hc() {
@@ -99,6 +103,8 @@ hc keybind Mod4-i jumpto urgent
################ launchers ################
+# tegaki
+hc keybind Mod4-r spawn tegaki-recognize
# mate
hc keybind XF86PowerOff spawn mate-session-save --shutdown-dialog
hc keybind Mod1-XF86PowerOff spawn mate-session-save --shutdown-dialog
@@ -175,7 +181,7 @@ hc rule focus=on
hc rule windowtype~'_NET_WM_WINDOW_TYPE_(NOTIFICATION|DOCK)' manage=off
# set apppropriate things to pseudotile
hc rule windowtype~'_NET_WM_WINDOW_TYPE_(DIALOG|UTILITY|SPLASH)' pseudotile=on focus=on
-hc rule class~'(Gcalctool|Pcsx2|Tilem2)' pseudotile=on focus=on
+hc rule class~'(milkytracker|goattrk2|FTL|Tegaki-recognize|Gcalctool|Pcsx2|Tilem2)' pseudotile=on focus=on
# unlock, just to be sure
hc unlock
diff --git a/.config/nitrogen/bg-saved.cfg b/.config/nitrogen/bg-saved.cfg
index fc0c8b6..5771f74 100644
--- a/.config/nitrogen/bg-saved.cfg
+++ b/.config/nitrogen/bg-saved.cfg
@@ -1,4 +1,4 @@
[:0.0]
-file=/home/shmibs/backdrops/hachimaka.jpg
+file=/home/shmibs/backdrops/haibane_renmei_rakka_looking_back_yoshitoshi_desktop_2884x1622_hd-wallpaper-696403-shifted.jpg
mode=5
bgcolor=#000000
diff --git a/.config/nitrogen/nitrogen.cfg b/.config/nitrogen/nitrogen.cfg
index 33f9902..9a87a10 100644
--- a/.config/nitrogen/nitrogen.cfg
+++ b/.config/nitrogen/nitrogen.cfg
@@ -1,8 +1,8 @@
[geometry]
posx=0
posy=18
-sizex=1916
-sizey=1058
+sizex=1920
+sizey=1062
[nitrogen]
view=icon
diff --git a/.config/ranger/rifle.conf b/.config/ranger/rifle.conf
index 4f4fa98..16386da 100644
--- a/.config/ranger/rifle.conf
+++ b/.config/ranger/rifle.conf
@@ -120,7 +120,7 @@ ext xcf, X, flag f = gimp -- "$@"
#-------------------------------------------
# Documents
#-------------------------------------------
-ext pdf, has zathura, X, flag f = zathura -- "$@"
+ext pdf|ps, has zathura, X, flag f = zathura -- "$@"
ext docx?, has catdoc, terminal = catdoc -- "$@" | "$PAGER"
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
index 50dcfc7..6dbf6b6 100755
--- a/.config/sxiv/exec/key-handler
+++ b/.config/sxiv/exec/key-handler
@@ -11,4 +11,18 @@ case "$1" in
rm "$2" ;;
"g")
gimp "$2" & ;;
+"s")
+
+ scp "$2" shmibbles.me:/srv/http/tmp/
+ echo "http://shmibbles.me/tmp/$(basename $2)" | xclip -i -selection clipboard
+ echo "http://shmibbles.me/tmp/$(basename $2)" | xclip -i -selection primary
+ notify-send "uploaded $(basename $2) to /tmp/"
+ ;;
+"i")
+ scp "$2" shmibbles.me:/srv/http/img/
+ echo "http://shmibbles.me/img/$(basename $2)" | xclip -i -selection clipboard
+ echo "http://shmibbles.me/img/$(basename $2)" | xclip -i -selection primary
+ notify-send "uploaded $(basename $2) to /img/"
+ ;;
+
esac