-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
lmms, SafeEjectGPU: add pages #5163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0d0d100
Add SafeEjectGPU and lmms
34bf670
Well then
bc66ecc
Add SafeEjectGPU and lmms
0445010
Update SafeEjectGPU and lmms
8b01e34
Whats this? missing syntax? not in my code!
e7dfb81
Revert "Add SafeEjectGPU and lmms"
bl-ue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # lmms | ||
|
|
||
| > Free, open source, multiplatform digital audio workstation. | ||
| > Render a `.mmp` or `.mmpz` project file, dump a `.mmpz` as XML, or start the GUI. | ||
| > More information: <https://lmms.io>. | ||
|
|
||
| - Start the GUI: | ||
|
|
||
| `lmms` | ||
|
|
||
| - Start the GUI and load external config: | ||
|
|
||
| `lmms --config {{path/to/config.xml}}` | ||
|
|
||
| - Start the GUI and import MIDI or Hydrogen file: | ||
|
|
||
| `lmms --import {{path/to/midi/or/hydrogen/file}}` | ||
|
|
||
| - Start the GUI with a specified window size: | ||
|
|
||
| `lmms --geometry {{x_size}}x{{y_size}}+{{x_offset}}+{{y_offset}}` | ||
|
|
||
| - Dump a `.mmpz` file: | ||
|
|
||
| `lmms dump {{path/to/mmpz/file.mmpz}}` | ||
|
|
||
| - Render a project file: | ||
|
|
||
| `lmms render {{path/to/mmpz_or_mmp/file}}` | ||
|
|
||
| - Render the individual tracks of a project file: | ||
|
|
||
| `lmms rendertracks {{path/to/mmpz_or_mmp/file}} {{path/to/dump/directory}}` | ||
|
|
||
| - Render with custom samplerate, format, and as a loop: | ||
|
|
||
| `lmms render --samplerate {{88200}} --format {{ogg}} --loop --output {{path/to/output/file.ogg}}` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # SafeEjectGPU | ||
|
|
||
| > Eject a GPU safely. | ||
| > Visit the man page for more info. | ||
|
bl-ue marked this conversation as resolved.
Outdated
|
||
|
|
||
| - Eject all GPUs: | ||
|
|
||
| `SafeEjectGPU Eject` | ||
|
|
||
| - List all GPUs attached: | ||
|
|
||
| `SafeEjectGPU gpus` | ||
|
|
||
| - List apps using a GPU: | ||
|
|
||
| `SafeEjectGPU gpuid {{GPU_ID}} apps` | ||
|
|
||
| - Get the status of a GPU: | ||
|
|
||
| `SafeEjectGPU gpuid {{GPU_ID}} status` | ||
|
|
||
| - Eject a GPU: | ||
|
|
||
| `SafeEjectGPU gpuid {{GPU_ID}} Eject` | ||
|
|
||
| - Launch an app on a GPU: | ||
|
|
||
| `SafeEjectGPU gpuid {{GPU_ID}} LaunchOnGPU {{path/to/App.app}}` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.