Compare commits
No commits in common. "014327fcfeea84733511744dfc6e4f7ce8f63153" and "9c900c919e991b41d9000f5102c0094f64d417ef" have entirely different histories.
014327fcfe
...
9c900c919e
|
@ -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
|
|
|
@ -14,7 +14,7 @@ async function main(): Promise<void> {
|
||||||
.option("--print <print:string>", "Print data from the current song.")
|
.option("--print <print:string>", "Print data from the current song.")
|
||||||
.option(
|
.option(
|
||||||
"--volume <volume:number>",
|
"--volume <volume:number>",
|
||||||
"Change the volume by a relative amount.",
|
"Change the volume by a relative amount",
|
||||||
)
|
)
|
||||||
.parse(Deno.args);
|
.parse(Deno.args);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue