hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

singboxwrap (727B)


      1 #!/bin/sh
      2 
      3 config_dir="/mnt/ssd/settings/sing-box"
      4 default_path="${XDG_DATA_HOME:-$HOME/.local/share}/singboxcfg"
      5 
      6 input=$1
      7 
      8 run_singbox () {
      9 	sing-box check -c "$1" && {
     10 		pidof sing-box >/dev/null && killall sing-box
     11 		setsid -f sing-box -c "$1" run
     12 		notify-send "sing-box with $(readlink "$1") is running now"
     13 	} || notify-send "Config check has failed. Check your configuration at $(readlink $1)" & exit 1
     14 }
     15 
     16 choose_menu ()	{
     17 	choose="$(ls $config_dir | wmenu -p "Config to use")"
     18 	[ -n "$choose" ] || exit 1
     19 	ln -sf "$config_dir/$choose" "$default_path"
     20 	echo "$default_path"
     21 }
     22 
     23 if [ ! -f "$default_path" ]; then
     24 	input="menu"
     25 fi
     26 
     27 case $input in
     28 	menu) run_singbox $(choose_menu) ;;
     29 	*) run_singbox $default_path ;;
     30 esac