upgr/README.md

20 lines
382 B
Markdown
Raw Permalink Normal View History

2021-10-10 20:25:10 +02:00
# upgr
The ultimate system upgrade solution!
Tired of running a bunch of commands to update your system? Combine them into one with upgr!
2021-10-12 23:30:57 +02:00
...just create a config file in `~/.config/upgr/config.lua`
2021-10-10 20:25:10 +02:00
and add your commands!
2021-10-12 23:30:57 +02:00
```lua
steps = {
{
command = "apt update && apt upgrade",
},
{
command = "rustup update",
}
}
2021-10-10 20:25:10 +02:00
```
then run `upgr` to ugprade!