fix: made it reflect the correct project
This commit is contained in:
parent
01ec8a4f68
commit
839769d58d
5 changed files with 16 additions and 61 deletions
|
@ -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)
|
||||
|
|
17
PKGBUILD
17
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() {
|
||||
|
|
54
README.md
54
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] [<command> [args]]
|
||||
usage: Steam Collector [flags] [<command> [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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"version": "0.2.4"
|
||||
"version": "0.1.2"
|
||||
}
|
||||
|
|
|
@ -4,7 +4,5 @@
|
|||
cmake
|
||||
gnumake
|
||||
ninja
|
||||
tomlplusplus
|
||||
cpptoml
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue