mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-12-31 13:42:43 +00:00
16 lines
580 B
Bash
Executable File
16 lines
580 B
Bash
Executable File
#!/bin/sh
|
|
|
|
autostart="pipewire pipewire-pulse wireplumber telegram-desktop flameshot spotify discord nextcloud"
|
|
|
|
for program in $autostart; do
|
|
pidof -s "$program" || "$program" &
|
|
done >/dev/null 2>&1
|
|
|
|
numlockx on &
|
|
xinput --set-prop 'COOLERMASTER CM310' 'libinput Accel Speed' -.9 &
|
|
xrandr --output DisplayPort-0 --mode 1920x1080 --rate 75 --output HDMI-A-0 --mode 1920x1080 --rate 60 --left-of DisplayPort-0 &
|
|
xrdb -load "$XDG_CONFIG_HOME/X11/xresources" &
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
|
|
exec dbus-launch --sh-syntax --exit-with-session awesome
|