From 4444c95611a8e373bb1f40bccfe2232a9cb14b7a Mon Sep 17 00:00:00 2001 From: Sebastian LaVine Date: Fri, 16 Feb 2024 12:24:51 -0500 Subject: [PATCH] Remove lcg I don't use this anymore since running `catgirl` on my VPS and connecting via mosh. --- src/lcg | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 src/lcg diff --git a/src/lcg b/src/lcg deleted file mode 100755 index b3f0eb5..0000000 --- a/src/lcg +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# Copyright (c) 2021 Sebastian LaVine -# SPDX-License-Identifier: MPL-2.0 -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# -# lcg -# Launches several instances of catgirl running under tabbed. -# This facilitates connections to multiple IRC servers at once. -# Arguments: -# catgirl config files to use. - -catgirl_configs="${CATGIRL_DIR:-$XDG_CONFIG_HOME/catgirl/dev}" - -[ "$#" -gt 0 ] && servers="$*" \ - || servers="$(find "$catgirl_configs" -type f)" - -window="$(tabbed -cd)" - -echo "$window" - -for file in $servers; do - # TODO: exit code 69 (EX_UNAVAILABLE) to detect if catgirl exited - # because it couldn't keep a connection with the server. See release - # notes for catgirl 1.9. - st -w "$window" -e catgirl "$file" & -done -- 2.45.2