executable_xstartup-stumpwm 552 B

123456789101112131415161718192021
  1. #!/bin/sh
  2. # https://www.linux.org.ru/forum/general/12531593?cid=13244080
  3. # x11vnc пропадают русские буквы
  4. setxkbmap -layout us -print \
  5. | sed -e 's,\+inet[^+"]*,,' \
  6. | xkbcomp - "$DISPLAY"
  7. unset SESSION_MANAGER
  8. unset DBUS_SESSION_BUS_ADDRESS
  9. /run/current-system/profile/bin/xhost +local:
  10. if [ -e "${HOME}/.bash_profile" ]
  11. then
  12. . "${HOME}/.bash_profile"
  13. fi
  14. "$HOME/.guix-profile/bin/xclickroot" -r xmenu.sh &
  15. exec -a stumpwm /bin/sh --login -c '/run/current-system/profile/bin/sbcl --load /home/oleg/bin/my-stumpwm'