diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e5076a..12c8185 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ file(READ ${CMAKE_CURRENT_SOURCE_DIR}/props.json PROPS) string(JSON VER GET ${PROPS} version) project(stc - DESCRIPTION "Utilize configuration files to create runner scripts." + DESCRIPTION "Easily download collections and mods from steam." VERSION ${VER}) set(CMAKE_CXX_STANDARD 26) diff --git a/PKGBUILD b/PKGBUILD index 5fa97c9..4e73483 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,15 @@ -pkgname=RapidMenu-git -_gitname=RapidMenu -pkgver=0.2.4 +pkgname=stc-git +_gitname=stc +pkgver=0.1.2 pkgrel=1 -pkgdesc="Utilize configuration files to create runner scripts." -url="https://github.com/DRAGONTOS/RapidMenu" +pkgdesc="Easily download collections and mods from steam." +url="https://github.com/DRAGONTOS/stc" arch=('x86_64') license=('GPLv3') -depends=('tomlplusplus' 'cpptoml') makedepends=('git' 'cmake' 'ninja') -provides=('RapidMenu') -conflicts=('RapidMenu') -source=('git+https://github.com/DRAGONTOS/RapidMenu.git') +provides=('stc') +conflicts=('stc') +source=('git+https://github.com/DRAGONTOS/stc.git') md5sums=('SKIP') prepare() { diff --git a/README.md b/README.md index 415ece7..1aabff9 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ -# RapidMenu -Utilize configuration files to create runner scripts. +# Steam Collector +Easily download collections and mods from steam. # Requirements -- cpptoml -- tomlplusplus -- a runner like rofi, dmenu etc +- steamcmd # Installing @@ -39,51 +37,11 @@ makepkg -si PKGBUILD ## Help message ``` -usage: RapidMenu [flags] [ [args]] +usage: Steam Collector [flags] [ [args]] LISTING COMMANDS: - -c: To specify which config to use. - -b: Make a executable out of a config. -``` - -### You will need to first setup the config dir -To do that you just need to, use this command. -``` -RapidMenu -``` -And it should say "Created /home/$USER/.config/RapidMenu". - -### How to use (-c) -If you want to open a configuration, just use this command. -``` -RapidMenu -c [config] -``` -You should put the config files in the config dir. So, if you want -to make a dashboard, then call it dashboard.conf. For games, use games.conf etc. - -### How to use (-b) -Just use this command, it will throw an error if incorrect. -Also, it will ask what you want to name the executable, and if it already exists. -``` -RapidMenu -b [config] -``` - -## Configuration -It is required to have the [runner] section in the configuration. -Example: -``` -[runner] -rname = "Dashboard:" #name if needed -rtheme = "-show-icons -theme ~/.config/rofi/themes/rounded-purple-dark.rasi" #theme if needed -rcommand = "rofi -dmenu -p" #dmenu, rofi, bemenu etc -``` -An example of something to add to the configuration. -``` -[Disk] #To set the name -names = "Disk" #To set the name in the runner -description = "You chose Disk." #Not required but can be set -command = "kitty -e /home/$USER/.config/RapidMenu/hdd.bash" #bash command + -c: Install a collection. + -m: Install a specific mod. ``` # Contributors - DRAGONTOS -- maukkis diff --git a/props.json b/props.json index 1126ef8..7681263 100644 --- a/props.json +++ b/props.json @@ -1,3 +1,3 @@ { - "version": "0.2.4" + "version": "0.1.2" } diff --git a/shell.nix b/shell.nix index 2ee1fdc..77a4fc6 100644 --- a/shell.nix +++ b/shell.nix @@ -4,7 +4,5 @@ cmake gnumake ninja - tomlplusplus - cpptoml ]; }