caio.co/de/dotfiles

bin is no more

Id
1ec09d6c124f2e7d43fad45f2e0057c8379948ed
Author
Caio
Commit time
2023-07-27T08:56:18+02:00

Modified .gitignore

@@ -1,6 +1,5
*.pyc
-bin/idea
-bin/rust-analyzer
+bin/*
config/fish/fish_variables
config/ncmpcpp/error.log
custom.d/*

Deleted bin/t

@@ -1,9 +1,0
-#!/bin/sh
-
-SESSION=${1-scratch}
-
-if tmux has-session -t $SESSION; then
- exec tmux attach -t $SESSION
-else
- exec tmux new-session -s $SESSION
-fi

Deleted bin/telnets

@@ -1,6 +1,0
-#!/bin/bash
-
-HOST=$1
-PORT=${2-443}
-
-openssl s_client -quiet -connect $HOST:$PORT