Skip to content

Commit

Permalink
First publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowMitia committed Apr 14, 2021
0 parents commit 092f2fa
Show file tree
Hide file tree
Showing 5 changed files with 526 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
247 changes: 247 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Cargo.toml
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
19 changes: 19 additions & 0 deletions README.md
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
```
Loading

0 comments on commit 092f2fa

Please sign in to comment.