mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-15 23:59:25 +01:00
7 lines
287 B
Bash
Executable File
7 lines
287 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
# Fedora-only, Debian uses a different CPU limit implementation!
|
|
#cpulimit --lazy --include-children --limit=30 flatpak run org.briarproject.Briar//stable "$@"
|
|
systemd-run --scope -p CPUQuota="30%" --user flatpak run org.briarproject.Briar//stable "$@"
|
|
set +x
|