-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 092f2fa
Showing
5 changed files
with
526 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 @@ | ||
/target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,24 @@ | ||
[package] | ||
name = "steam_randomiser" | ||
version = "0.1.0" | ||
authors = ["Dimitri Belopopsky <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "A tool to search files" | ||
readme = "README.md" | ||
homepage = "https://github.com/ShadowMitia/steam_randomiser" | ||
repository = "https://github.com/ShadowMitia/steam_randomiser" | ||
keywords = ["cli", "steam", "random", "game"] | ||
categories = ["command-line-utilities"] | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
dirs = "3.0.1" | ||
rand = "0.8.3" | ||
which = "4.1.0" | ||
|
||
[profile.release] | ||
lto = true | ||
codegen-units = 1 |
This file contains 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,19 @@ | ||
# Steam Randomiser | ||
|
||
Don't know what to play on [Steam](https://store.steampowered.com/)? | ||
|
||
Just run `Steam Randomiser` and it will randomly choose from one of your **installed** games! | ||
|
||
Perfect when you don't know which game to play from all of those bundles you've bought all these years! | ||
|
||
## Usage | ||
|
||
Double click on the executable or run from a terminal. | ||
|
||
## Build | ||
|
||
```sh | ||
git clone https://github.com/ShadowMitia/steam_randomiser.git | ||
cd steam_randomiser | ||
cargo build | ||
``` |
Oops, something went wrong.