35 lines
887 B
Plaintext
35 lines
887 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
import-gsettings() {
|
||
|
# usage: import-gsettings <gsettings key>:<settings.ini key> <gsettings key>:<settings.ini key> ...
|
||
|
expression=""
|
||
|
for pair in "$@"; do
|
||
|
IFS=:; set -- $pair
|
||
|
expressions="$expressions -e 's:^$2=(.*)$:gsettings set org.gnome.desktop.interface $1 \1:e'"
|
||
|
done
|
||
|
IFS=
|
||
|
eval sed -E $expressions "${XDG_CONFIG_HOME:-$HOME/.config}"/gtk-3.0/settings.ini >/dev/null
|
||
|
}
|
||
|
|
||
|
export XDG_SESSION_TYPE=wayland
|
||
|
|
||
|
# GTK
|
||
|
export CLUTTER_BACKEND=wayland
|
||
|
export GTK_CSD=0
|
||
|
if [[ -f /usr/lib/libgtk3-nocsd.so.0 ]]; then
|
||
|
export LD_PRELOAD=/usr/lib/libgtk3-nocsd.so.0
|
||
|
fi
|
||
|
import-gsettings \
|
||
|
gtk-theme:gtk-theme-name \
|
||
|
icon-theme:gtk-icon-theme-name \
|
||
|
cursor-theme:gtk-cursor-theme-name
|
||
|
|
||
|
# Elementary/EFL
|
||
|
export ECORE_EVAS_ENGINE=wayland_egl
|
||
|
export ELM_ENGINE=wayland_egl
|
||
|
|
||
|
# SDL
|
||
|
export SDL_VIDEODRIVER=wayland
|
||
|
|
||
|
exec /usr/bin/sway $@
|