mirror of
https://github.com/winneon/gsu.git
synced 2026-09-10 07:16:25 -04:00
40 lines
1.2 KiB
Bash
Executable file
40 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Terminal. Uncomment your terminal to use,
|
|
# or uncomment and edit one of the values to use your own terminal.
|
|
#
|
|
# If uncommented, be sure that the terminal you are providing is installed.
|
|
# If --terminal is provided, a new terminal using this variable will be opened.
|
|
# Use the string "CMD" to refer to the command that is run (gsu).
|
|
#
|
|
# gnome-terminal:
|
|
#GSU_TERM=(gnome-terminal -- CMD)
|
|
#
|
|
# urxvt:
|
|
#GSU_TERM=(urxvt -e bash -c "'CMD'")
|
|
|
|
# Audio input device. If empty, gsu defaults to pulseaudio.
|
|
# See https://www.ffmpeg.org/ffmpeg-devices.html#Input-Devices for a list
|
|
# of valid input devices.
|
|
AUDIO=""
|
|
|
|
# Streamable email/username.
|
|
# REQUIRED for video upload without a custom upload command.
|
|
STREAMABLE_USER=""
|
|
|
|
# Streamable password.
|
|
# REQUIRED for video upload without a custom upload command.
|
|
STREAMABLE_PASS=""
|
|
|
|
# Custom screenshot upload command. Leave empty to upload to uguu.se.
|
|
# Use the string "GSUFILEOUT" to refer to your gsu operand.
|
|
S_UPLOAD=""
|
|
|
|
# Custom video upload command. Leave empty to upload to streamable.
|
|
# Use the string "GSUFILEOUT" to refer to your gsu operand.
|
|
V_UPLOAD=""
|
|
|
|
# Custom gif upload command. Leave empty to upload to gfycat.
|
|
# Use the string "GSUFILEOUT" to refer to your gsu operand.
|
|
G_UPLOAD=""
|