aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-12-08 01:44:48 +0300
committereug-vs <eug-vs@keemail.me>2020-12-08 01:44:48 +0300
commit8115ca3e6e1c5f4d09019a798d6d75aad3413825 (patch)
treefd0a8f4a3b617cadc4688e1a08abfbfe803dfa6b /.local
parent10f5a135bcf85446cddf282abf30010c74320fd8 (diff)
downloaddotfiles-8115ca3e6e1c5f4d09019a798d6d75aad3413825.tar.gz
refactor: move screenshot to separate script
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/screenshot.sh11
-rwxr-xr-x.local/bin/ttl.sh11
2 files changed, 22 insertions, 0 deletions
diff --git a/.local/bin/screenshot.sh b/.local/bin/screenshot.sh
new file mode 100755
index 0000000..0fa365a
--- /dev/null
+++ b/.local/bin/screenshot.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+# Screenshot via ImageMagick
+# Passes all args down to import command
+
+SCREENSHOTS_DIR=$HOME/Pictures/Screenshots
+FILENAME=$SCREENSHOTS_DIR/$(date +%F_%H-%M-%S).png
+
+echo "$@"
+
+mkdir -p $SCREENSHOTS_DIR
+import $@ $FILENAME && xclip -selection clipboard -target image/png -i < $FILENAME
diff --git a/.local/bin/ttl.sh b/.local/bin/ttl.sh
new file mode 100755
index 0000000..2fa2a16
--- /dev/null
+++ b/.local/bin/ttl.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+# Fix default TTL and disable ipv6 making changes permanent
+# TODO: replace wlo1 with automatically detected device name
+
+sudo sysctl \
+ net.ipv4.ip_default_ttl=65 \
+ net.ipv6.conf.all.disable_ipv6=1\
+ net.ipv6.conf.default.disable_ipv6=1 \
+ net.ipv6.conf.wlo1.disable_ipv6=1 \
+ | sudo tee /etc/sysctl.d/fix-ttl.conf -a
+