blob: c78269f97c778509ad9de6ea8539e905445a634a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/python3
import animation
import subprocess
@animation.wait('setting up hardened profile')
def start():
subprocess.call(['eselect', 'profile', 'set', 'default/linux/amd64/17.0/hardened'])
subprocess.call(['env-update'])
|