minor tweaks
[distro-setup] / brc
diff --git a/brc b/brc
index bd8429e1d526b6252367f3d38b65005bca5d3337..a4c0589d5c627920c30fe6869c1e71e70e9d57f4 100644 (file)
--- a/brc
+++ b/brc
@@ -152,7 +152,7 @@ HISTCONTROL=ignoredups
 # works in addition to HISTCONTROL to do more flexible things
 # it could also do the same things as HISTCONTROL and thus replace it,
 # but meh. dunno why, but just " *" does glob expansion, so use [ ] to avoid it.
-HISTIGNORE='k *:[ ]*'
+HISTIGNORE='pass *:k *:[ ]*'
 
 export BC_LINE_LENGTH=0
 
@@ -558,7 +558,7 @@ fa() {
 }
 
 faf() { # find all files
-    find -L $1 -type f -not \( -name .svn -prune -o -name .git -prune \
+    find -L $1 -not \( -name .svn -prune -o -name .git -prune \
          -o -name .hg -prune -o -name .editor-backups -prune \
          -o -name .undo-tree-history -prune \) 2>/dev/null
 }
@@ -568,9 +568,11 @@ fastboot() {
     /a/opt/android-platform-tools/fastboot "$@";
 }
 
+kdecd() { /usr/lib/x86_64-linux-gnu/libexec/kdeconnectd; }
 
 # List of apps to install/update
 # Create from existing manually installed apps by doing
+# fdroidcl update
 # fdroidcl search -i, then manually removing
 # automatically installed/preinstalled apps
 
@@ -589,8 +591,8 @@ fastboot() {
 # usually good enough to just rm -rf /data/app/APPNAME
 #
 # currently broken:
-#at.bitfire.davdroid
 fdroid_pkgs=(
+    at.bitfire.davdroid
     com.alaskalinuxuser.justnotes
     com.artifex.mupdfdemo
     com.fsck.k9
@@ -615,6 +617,7 @@ fdroid_pkgs=(
     org.quantumbadger.redreader
     org.smssecure.smssecure
     org.fedorahosted.freeotp
+    org.yaaic
 )
 # https://forum.xda-developers.com/android/software-hacking/wip-selinux-capable-superuser-t3216394
 # for maru,
@@ -951,6 +954,10 @@ else
     }
 fi
 
+ipdrop() {
+    s iptables -A INPUT -s $1 -j DROP
+}
+
 net-dev-info() {
     e "lspci -nnk|gr -iA2 net"
     lspci -nnk|gr -iA2 net
@@ -970,7 +977,7 @@ jtail() {
 }
 
 kff() { # keyboardio firmware flash
-    pushd /a/opt/sketches/Model01-Firmware
+    pushd /a/bin/distro-setup/Arduino/Model01-Firmware
     yes $'\n' | make flash
     popd
 }
@@ -1527,7 +1534,7 @@ t() {
      declare -gi _seq; _seq+=1
      echo "test body" | m mail -s "test mail from $HOSTNAME, $_seq" "${@:-root@localhost}"
      # for testing to send from an external address, you can do for example
-     # -aFrom:ian@iank.bid web-6fnbs@mail-tester.com
+     # -fian@iank.bid -aFrom:ian@iank.bid web-6fnbs@mail-tester.com
      # note in exim, you can retry a deferred message
      # s exim -M MSG_ID
      # MSG_ID is in /var/log/exim4/mainlog, looks like 1ccdnD-0001nh-EN
@@ -1602,7 +1609,7 @@ EOF
  tx() { # toggle set -x, and the prompt so it doesn't spam
         if [[ $- == *x* ]]; then
             set +x
-            PROMPT_COMMAND=prompt_command
+            PROMPT_COMMAND=prompt-command
         else
             unset PROMPT_COMMAND
             PS1="\w \$ "
@@ -1627,10 +1634,10 @@ m() { printf "%s\n" "$*";  "$@"; }
 
 
 vpncmd() {
-    m s nsenter -t $(pgrep -f "/usr/sbin/openvpn .* --config /etc/openvpn/client/client.conf") -n -m "$@"
+    m s nsenter -t $(pgrep -f "/usr/sbin/openvpn .* --config /etc/openvpn/.*client.conf") -n -m "$@"
 }
 vpnf() {
-    vpncmd gksudo -u ian "firefox -no-remote -P firefox-main-profile" &r
+    vpncmd gksudo -u iank "firefox -no-remote -P firefox-main-profile" &r
 }
 vpnbash() {
     vpncmd bash
@@ -1709,8 +1716,11 @@ vspicy() { # usage: VIRSH_DOMAIN
 wtr() { curl wttr.in/boston; }
 
 xl() {
-    # this succeeds even if gnome-screensaver isn\'t running.
+    if pgrep gnome-screensav &>/dev/null; then
+    # this command actually starts gnome-screensaver if it isn't running.
+    # lololol, what crap
     gnome-screensaver-command --exit &>/dev/null
+    fi
     mate-screensaver-command --exit &>/dev/null
     if ! pidof xscreensaver; then
         pushd /
@@ -1719,7 +1729,7 @@ xl() {
         # 1 was not long enough
         sleep 3
     fi
-    xscreensaver-command -lock
+    xscreensaver-command -activate
 }
 
 #############################
@@ -1940,6 +1950,25 @@ scrollbar true
 EOF
 }
 
+reset-xscreensaver() {
+    # except for spash, i set these by setting gui options in
+    # xscreensaver-command -demo
+    # then finding the corresponding option in .xscreensaver
+    # spash, i happened to notice in .xscreensaver
+    cat > /home/iank/.xscreensaver <<'EOF'
+mode:          blank
+dpmsEnabled:   True
+dpmsStandby:   0:01:00
+dpmsSuspend:   0:01:00
+dpmsOff:       0:02:00
+timeout:       0:01:00
+lock:           True
+lockTimeout:   0:02:00
+splash:                False
+EOF
+
+}
+
 
 ###########################################
 # stuff that makes sense to be at the end #