fix: made it reflect the correct project

This commit is contained in:
Kaley, Fischer 2024-10-06 17:01:05 +02:00
parent 01ec8a4f68
commit 839769d58d
5 changed files with 16 additions and 61 deletions

View file

@ -5,7 +5,7 @@ file(READ ${CMAKE_CURRENT_SOURCE_DIR}/props.json PROPS)
string(JSON VER GET ${PROPS} version) string(JSON VER GET ${PROPS} version)
project(stc project(stc
DESCRIPTION "Utilize configuration files to create runner scripts." DESCRIPTION "Easily download collections and mods from steam."
VERSION ${VER}) VERSION ${VER})
set(CMAKE_CXX_STANDARD 26) set(CMAKE_CXX_STANDARD 26)

View file

@ -1,16 +1,15 @@
pkgname=RapidMenu-git pkgname=stc-git
_gitname=RapidMenu _gitname=stc
pkgver=0.2.4 pkgver=0.1.2
pkgrel=1 pkgrel=1
pkgdesc="Utilize configuration files to create runner scripts." pkgdesc="Easily download collections and mods from steam."
url="https://github.com/DRAGONTOS/RapidMenu" url="https://github.com/DRAGONTOS/stc"
arch=('x86_64') arch=('x86_64')
license=('GPLv3') license=('GPLv3')
depends=('tomlplusplus' 'cpptoml')
makedepends=('git' 'cmake' 'ninja') makedepends=('git' 'cmake' 'ninja')
provides=('RapidMenu') provides=('stc')
conflicts=('RapidMenu') conflicts=('stc')
source=('git+https://github.com/DRAGONTOS/RapidMenu.git') source=('git+https://github.com/DRAGONTOS/stc.git')
md5sums=('SKIP') md5sums=('SKIP')
prepare() { prepare() {

View file

@ -1,10 +1,8 @@
# RapidMenu # Steam Collector
Utilize configuration files to create runner scripts. Easily download collections and mods from steam.
# Requirements # Requirements
- cpptoml - steamcmd
- tomlplusplus
- a runner like rofi, dmenu etc
# Installing # Installing
@ -39,51 +37,11 @@ makepkg -si PKGBUILD
## Help message ## Help message
``` ```
usage: RapidMenu [flags] [<command> [args]] usage: Steam Collector [flags] [<command> [args]]
LISTING COMMANDS: LISTING COMMANDS:
-c: To specify which config to use. -c: Install a collection.
-b: Make a executable out of a config. -m: Install a specific mod.
```
### 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
``` ```
# Contributors # Contributors
- DRAGONTOS - DRAGONTOS
- maukkis

View file

@ -1,3 +1,3 @@
{ {
"version": "0.2.4" "version": "0.1.2"
} }

View file

@ -4,7 +4,5 @@
cmake cmake
gnumake gnumake
ninja ninja
tomlplusplus
cpptoml
]; ];
} }