]> git.madduck.net Git - etc/tmux.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fall back to python uuid gen
authormartin f. krafft <madduck@madduck.net>
Tue, 24 Mar 2020 02:03:31 +0000 (15:03 +1300)
committermartin f. krafft <madduck@madduck.net>
Tue, 24 Mar 2020 02:03:31 +0000 (15:03 +1300)
.bin/tmux

index d6ff4b27d0493d3bc36eb134cdf8b4cd345dbb54..3fc4b4fd89181aabadc489b302738293e32acb8e 100755 (executable)
--- a/.bin/tmux
+++ b/.bin/tmux
@@ -41,6 +41,9 @@ fi
 # only without argument create a new session with a random name/id to which we
 # can then attach
 
 # only without argument create a new session with a random name/id to which we
 # can then attach
 
+if ! command -v uuidgen >/dev/null; then
+  uuidgen() { python3 -c 'import uuid; print(uuid.uuid1())'; }
+fi
 UUID=$(uuidgen)
 echo "$UUID" > $LASTSESSIONIDFILE
 
 UUID=$(uuidgen)
 echo "$UUID" > $LASTSESSIONIDFILE