-
Notifications
You must be signed in to change notification settings - Fork 0
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 84d8d07
Showing
5 changed files
with
479 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,4 @@ | ||
steamcmd | ||
config.txt | ||
modlist.json | ||
steam-harvester |
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,9 @@ | ||
CXX = g++ | ||
CXXFLAGS = -g $(shell pkg-config --cflags gtk+-3.0 webkit2gtk-4.0) | ||
LDFLAGS = $(shell pkg-config --libs gtk+-3.0 webkit2gtk-4.0) -lcurl | ||
|
||
steam-harvester: main.cpp | ||
$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) | ||
|
||
release: main.cpp | ||
$(CXX) $(CXXFLAGS) -O3 -o steam-harvester $^ $(LDFLAGS) |
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 Harvester | ||
|
||
Steam Workshop Item manager for GNU/Linux Systems | ||
|
||
![screenshot](screenshot.png) | ||
|
||
## Notes: | ||
|
||
* Downloads fail often with SteamCMD, just hit download again | ||
* Currently only works with games that allow anonymous login for workshop items | ||
|
||
## Usage: | ||
|
||
* Enter Steam Game ID to manage (eg: 294100 for RimWorld) (will autofill if done before) | ||
* `+` when on item page to add to download list | ||
* Select item and hit `-` to remove it | ||
* `Download All` to begin downloading mods in list | ||
|
||
Mods saved to `/home/$(USER)/Steam/steamapps/workshop/content/` |
Oops, something went wrong.