1
Fork 0

Compare commits

..

No commits in common. "014327fcfeea84733511744dfc6e4f7ce8f63153" and "9c900c919e991b41d9000f5102c0094f64d417ef" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View File

@ -1,11 +0,0 @@
#!/usr/bin/env zsh
# Automatically type "r" in the Deep Rock Galactic chat when it's running and
# the currently active window.
drg_pid=$(xdotool search --name 'Deep Rock Galactic' getwindowpid)
active_window_pid=$(xdotool getactivewindow getwindowpid)
if [[ $drg_pid = $active_window_pid ]]; then
xdotool key --delay 50 Enter r Enter
fi

View File

@ -14,7 +14,7 @@ async function main(): Promise<void> {
.option("--print <print:string>", "Print data from the current song.")
.option(
"--volume <volume:number>",
"Change the volume by a relative amount.",
"Change the volume by a relative amount",
)
.parse(Deno.args);