From 03648b3d9f177227df40129bed22558f6924b91c Mon Sep 17 00:00:00 2001 From: spl3g Date: Wed, 18 Mar 2026 18:01:41 +0300 Subject: so.. v2 i guess --- .../attachments/hypr-scripts/toggle-vpn.sh | 93 ---------------------- 1 file changed, 93 deletions(-) delete mode 100755 home-manager/homeModules/attachments/hypr-scripts/toggle-vpn.sh (limited to 'home-manager/homeModules/attachments/hypr-scripts/toggle-vpn.sh') diff --git a/home-manager/homeModules/attachments/hypr-scripts/toggle-vpn.sh b/home-manager/homeModules/attachments/hypr-scripts/toggle-vpn.sh deleted file mode 100755 index 8775f39..0000000 --- a/home-manager/homeModules/attachments/hypr-scripts/toggle-vpn.sh +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/sh - -ROFI_CMD="rofi -dmenu -theme-str listview{enabled:false;} -p" -LOCAL_STORAGE=~/.local/share/toggle -TMP_PATH=/tmp/vpn-status -V2RAYA_URL="http://localhost:2017" - -DBUS_INTERFACE="com.vpn_status" -DBUS_MEMBER="StatusChanged" - -set_token() { - login=$(echo "" | $ROFI_CMD "Enter login > ") - password=$(echo "" | $ROFI_CMD "Enter password > " -theme-str 'entry {enabled: false;}') - response=$(curl -s -X POST \ - "${V2RAYA_URL}/api/login" \ - -d "{\"username\": \"${login}\", \"password\": \"${password}\"}") - - code=$(echo $response | jq -r ".code") - echo "${response}" | jq ".data.token" -r > "${LOCAL_STORAGE}/token" -} - -get_status() { - token=$1 - response=$(curl -s -X GET \ - "${V2RAYA_URL}/api/touch" \ - -H "Authorization: ${token}") - echo $response | jq ".data.running" -r -} - -toggle() { - token=$1 - method=$2 - response=$(curl -s -X ${method} \ - "${V2RAYA_URL}/api/v2ray" \ - -H "Authorization: ${token}") - code=$(echo $response | jq ".code" -r) - echo $response | jq ".data.running" -r -} - -check_status() { - case $(cat $TMP_PATH) in - true) - output='{"text": "󰠥"}' - ;; - *) - output='{"text": ""}' - ;; - esac - echo $output | jq --unbuffered --compact-output -} - - -if [[ ! -d "${LOCAL_STORAGE}" ]]; then - mkdir "${LOCAL_STORAGE}" -fi - -if [[ ! -e "${LOCAL_STORAGE}/token" ]]; then - touch "${LOCAL_STORAGE}/token" -fi - -TOKEN=$(cat "${LOCAL_STORAGE}/token") -if [[ -z "${TOKEN}" ]]; then - set_token - TOKEN=$(cat "${LOCAL_STORAGE}/token") -fi - -STATUS=$(get_status $TOKEN) - -if [[ $1 == "waybar" ]]; then - echo $STATUS > $TMP_PATH - check_status - - dbus-monitor --profile "interface='${DBUS_INTERFACE}',member='${DBUS_MEMBER}'" | - while read -r line; do - check_status - done -else - if [[ $STATUS == "true" ]]; then - NEW_STATUS=$(toggle $TOKEN DELETE) - else - NEW_STATUS=$(toggle $TOKEN POST) - fi - - if [[ $NEW_STATUS == "null" ]]; then - set_token - exit 0 - fi - - echo $NEW_STATUS > $TMP_PATH - dbus-send --type=signal / "${DBUS_INTERFACE}.${DBUS_MEMBER}" - - notify-send v2rayA "running: ${NEW_STATUS}" -fi -- cgit v1.2.3