https://github.com/infernio/sssm
SSSM (Simple Steam Skin Manager) is a really simple CLI skin manager for Steam on Linux.
https://github.com/infernio/sssm
Last synced: over 1 year ago
JSON representation
SSSM (Simple Steam Skin Manager) is a really simple CLI skin manager for Steam on Linux.
- Host: GitHub
- URL: https://github.com/infernio/sssm
- Owner: Infernio
- License: mit
- Created: 2018-09-07T13:06:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-10-23T10:55:41.000Z (over 4 years ago)
- Last Synced: 2025-01-17T04:32:38.603Z (over 1 year ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSSM - Simple Steam Skin Manager
A simple skin manager for Steam on Linux that can install, upgrade and uninstall skins from a CLI environment.
Mostly meant to be used with a package manager in order to automatically install, upgrade and uninstall a skin as the skin's package is installed, upgraded or uninstalled.
This is necessary because Steam creates a `~/.local/share/Steam` directory for each user, meaning that package managers can't properly install Steam skins.
## Commands
Syntax: sssm [action-specific arguments]
Actions:
- list [user]
Lists all currently installed skins.
Parameters:
- user (optional): If specified, list only the skins that user has installed. Otherwise, list all globally installed skins.
- sync [user]
Installs or upgrades a skin for a user.
Parameters:
- skin: The skin to install / upgrade.
- user (optional): The user to install / upgrade the skin for. If left empty, install / upgrade for all users.
- remove [user]
Uninstalls a skin for a user.
Parameters:
- skin: The skin to uninstall.
- user (optional): The user to uninstall the skin for. If left empty, uninstall for all users.
- version
Prints the manager's version and exits.
## Directories
- `/usr/share/steam/skins`
- SSSM looks for installed skins here. They will then be copied to the user's steam installation directory (see below). In other words, this is where the package manager should place installed skins.
- `/home/*/.local/share/Steam/skins`
- This is where copies of the installed skins will be placed for each user.
## Typical Usage
- After installation of a skin:
`sssm sync `
- After a skin has been upgraded:
`sssm sync `
- After a skin has been uninstalled:
`sssm remove `
- To list installed skins:
`sssm list`
## License
SSSM is licensed under the MIT license. See [LICENSE](LICENSE) for the full license text.