10 lines
274 B
Bash
10 lines
274 B
Bash
#!/bin/bash
|
|
|
|
# Autostart Sway via Systemd
|
|
/bin/systemctl enable sway.service
|
|
/bin/systemctl start sway.service
|
|
#/bin/systemctl daemon-reload
|
|
|
|
# download bumblebee
|
|
mkdir -p /usr/bin/bumbleebee
|
|
git clone https://git.kraut.space/l.behm/bumblebee-status.git /usr/bin/bumblebee/
|