various minor changes
authorIan Kelling <ian@iankelling.org>
Sun, 11 Oct 2020 12:46:50 +0000 (08:46 -0400)
committerIan Kelling <ian@iankelling.org>
Sun, 11 Oct 2020 12:46:50 +0000 (08:46 -0400)
brc
i3-sway/common.conf
subdir_files/.config/i3/config
subdir_files/.config/mpv/mpv.conf
subdir_files/.config/sway/config
subdir_files/.gnupg/gpg.conf

diff --git a/brc b/brc
index 4823951468ad7a90bcb1105e83450d18ae716368..96b68128c90cf23fe2eea9ea33ddea8ccf166f7d 100644 (file)
--- a/brc
+++ b/brc
@@ -1573,20 +1573,26 @@ te() {
   return $ret
 }
 
+psoff() {
+  # normally, i would just execute these commands in the function.
+  # however, DEBUG is not inherited, so we need to run it outside a function.
+  # And we want to run set -x afterwards to avoid spam, so we cram everything
+  # in here, and then it will run after this function is done.
+  PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "'
+}
+pson() {
+  PROMPT_COMMAND=prompt-command
+  if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
+    trap 'settitle "$BASH_COMMAND"' DEBUG
+  fi
+}
 
 tx() { # toggle set -x, and the prompt so it doesnt spam
   if [[ $- == *x* ]]; then
     set +x
-    PROMPT_COMMAND=prompt-command
-    if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
-      trap 'settitle "$BASH_COMMAND"' DEBUG
-    fi
+    pson
   else
-    # normally, i would just execute these commands in the function.
-    # however, DEBUG is not inherited, so we need to run it outside a function.
-    # And we want to run set -x afterwards to avoid spam, so we cram everything
-    # in here, and then it will run after this function is done.
-    PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "; set -x'
+    psoff
   fi
 }
 
index ccd022a8e3dfd77042c15052415d9a64ecee7381..3da74b89ce3347e717b7acd05cfc2feb7dbee236 100644 (file)
@@ -91,3 +91,6 @@ font pango:monospace 8
 
 # shortcut to selection widget (primary)
 bindsym $mod+End exec /a/opt/clipster/clipster -sp
+
+# file:///usr/share/doc/i3-wm/userguide.html#_border_style_for_new_windows
+new_window none
index dbc2243583214dd04418c719d535abead99b713f..14f3819fffa4f2f921843105751559e9bfc68518 100644 (file)
@@ -10,6 +10,7 @@ bindsym $mod+2 exec "pavucontrol"
 bindsym $mod+3 exec "x-www-browser"
 bindsym $mod+4 exec "x-www-browser -no-remote -P firefox-main-profile"
 bindsym $mod+5 exec "/usr/local/bin/start-tor-browser"
+bindsym $mod+6 exec "/a/bin/redshift.sh"
 bindsym $mod+equal exec "t s w; t in"
 bindsym $mod+Home exec "t out"
 #bindsym $mod+End exec "t s x; t in"
@@ -90,6 +91,8 @@ font pango:monospace 8
 
 # shortcut to selection widget (primary)
 bindsym $mod+End exec /a/opt/clipster/clipster -sp
+
+new_window none
 # exit i3 (logs you out of your X session)
 bindsym $mod+Shift+q exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
 
index 8e83e9d4af50f6fcad04d4770585dce32a30d1d3..273916640c1b944894bbceea2b04bef1e4dfa6db 100644 (file)
@@ -1,10 +1,10 @@
 #loop=inf
 
-
+#pause
 #loop-file=inf
 loop-file=no
-shuffle
-volume=20
+#shuffle
+#volume=20
 #save-position-on-quit
 
 # use --profile d
index 1617507df593ccb161bc7d2bb16c4932d8aeb019..6572f34ab767f9adb3e80fb739a41a29b50cdea3 100644 (file)
@@ -10,6 +10,7 @@ bindsym $mod+2 exec "pavucontrol"
 bindsym $mod+3 exec "x-www-browser"
 bindsym $mod+4 exec "x-www-browser -no-remote -P firefox-main-profile"
 bindsym $mod+5 exec "/usr/local/bin/start-tor-browser"
+bindsym $mod+6 exec "/a/bin/redshift.sh"
 bindsym $mod+equal exec "t s w; t in"
 bindsym $mod+Home exec "t out"
 #bindsym $mod+End exec "t s x; t in"
@@ -90,6 +91,8 @@ font pango:monospace 8
 
 # shortcut to selection widget (primary)
 bindsym $mod+End exec /a/opt/clipster/clipster -sp
+
+new_window none
 # exit sway (logs you out of your Wayland session)
 bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
 
index c60b19d2277d1280a4f3c1245a8d8663eaa0c07f..c764ca7a593015a6eb3d8edbee1bbcb620ea9d50 100644 (file)
@@ -50,3 +50,13 @@ keyserver hkp://ipv4.pool.sks-keyservers.net
 
 # more secure hkps, but had problems with my gpg version
 #keyserver hkps://hkps.pool.sks-keyservers.net
+
+### begin things added by enigmail
+cert-digest-algo SHA256
+no-emit-version
+no-comments
+personal-cipher-preferences AES AES256 AES192 CAST5
+personal-digest-preferences SHA256 SHA512 SHA384 SHA224
+ignore-time-conflict
+allow-freeform-uid
+### end things added by enigmail