11 lines
181 B
Text
11 lines
181 B
Text
|
#!/usr/bin/bash
|
||
|
#
|
||
|
# Set the primary screen after login
|
||
|
#
|
||
|
set -eu
|
||
|
|
||
|
sleep 5
|
||
|
if [[ "$XDG_SESSION_TYPE" = wayland ]] ; then
|
||
|
kscreen-doctor output.{{ dual_screen[1] }}.priority.1
|
||
|
fi
|