Skip to content

Commit

Permalink
Add show_paused to installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiicall committed Feb 20, 2024
1 parent f98d108 commit 6ebf6f4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion scripts/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,17 @@
if appid == "":
appid = None

show_paused = input("Do you want to show paused videos? (Y/n): ").lower()

if show_paused == "y":
show_paused = True
elif show_paused == "n":
show_paused = False
else:
show_paused = None

print("----------Buttons----------")

while True:
val = input("Do you want custom buttons? (y/N): ").lower()

Expand Down Expand Up @@ -220,7 +231,8 @@

discord = {
"application_id": appid,
"buttons": buttons
"buttons": buttons,
"show_paused": show_paused
}

config = {
Expand Down

0 comments on commit 6ebf6f4

Please sign in to comment.