22 lines
548 B
Bash
22 lines
548 B
Bash
|
#!/bin/sh
|
||
|
systemctl --user enable gamemoded &
|
||
|
systemctl --user start gamemoded &
|
||
|
systemctl --user enable pulseaudio-bluetooth-autoconnect &
|
||
|
systemctl --user start pulseaudio-bluetooth-autoconnect &
|
||
|
|
||
|
systemctl --user enable android-session-manager&
|
||
|
systemctl --user start android-session-manager&
|
||
|
|
||
|
libinput-gestures-setup autostart &
|
||
|
libinput-gestures-setup start &
|
||
|
|
||
|
|
||
|
alacritty -e "${HOME}/.config/autostart-scripts/setup-assistant.sh"
|
||
|
|
||
|
rm -rf "${HOME}/.config/autostart-scripts/setup.sh" &
|
||
|
|
||
|
notify-send "Setup complete!"
|
||
|
|
||
|
setup_dxvk install &
|
||
|
exit
|