5 lines
119 B
Bash
Executable file
5 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
profile_name="${1}"
|
|
shift 1
|
|
echo librewolf --name="${profile_name}" --no-remote -P "${profile_name}" "$@"
|