https://github.com/beangreen247/osu-now-playing-song-name-graber-script
A script that grabs the name of the current song played in osu! and saves it into a text file to be used in obs.
https://github.com/beangreen247/osu-now-playing-song-name-graber-script
247 bean file grab grabber green live now obs osu osugame playing song stream text title
Last synced: 2 months ago
JSON representation
A script that grabs the name of the current song played in osu! and saves it into a text file to be used in obs.
- Host: GitHub
- URL: https://github.com/beangreen247/osu-now-playing-song-name-graber-script
- Owner: BeanGreen247
- Created: 2021-05-09T17:28:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-10T07:16:34.000Z (almost 4 years ago)
- Last Synced: 2025-02-15T08:32:13.981Z (2 months ago)
- Topics: 247, bean, file, grab, grabber, green, live, now, obs, osu, osugame, playing, song, stream, text, title
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# osu-now-playing-song-name-graber-script
A script that grabs the name of the current song played in osu! and saves it into a text file to be used in obs.
```bash
while sleep 1; do
osuwindowname=$(xdotool search --classname 'osu\!.exe' search --name "osu" getwindowname|awk 'sub(/^.{8}/,"")');
echo "$osuwindowname" > songname.txt;
done
```
Example here [CLICK ME](https://mega.nz/file/jg1HBa6b#21OCdJHs4-O_M1FVqLUKaMlWo76kSyslmm42tCD5gmk)