27 lines
883 B
Bash
Executable file
27 lines
883 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ $(hostname) = "syl" ]; then
|
|
if [ $XDG_SESSION_TYPE = "x11" ]; then
|
|
style="laptop"
|
|
echo "this is x11"
|
|
else
|
|
style="laptop-wayland"
|
|
echo "this is wayland"
|
|
fi
|
|
else
|
|
style="desktop"
|
|
#echo "this is not hidpi"
|
|
fi
|
|
|
|
if [ $XDG_SESSION_TYPE = "x11" ]; then
|
|
rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}' -theme ~/.config/rofi/launchers-git/$style-clipboard.rasi $@ &
|
|
c=0
|
|
while ! xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $(xdotool search -class 'rofi') ; do
|
|
sleep .1
|
|
c=$((c+1))
|
|
[[ c = 50 ]] && exit; # stop script window didn't appear after 5 seconds
|
|
done
|
|
else
|
|
rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}' -theme ~/.config/rofi/launchers-git/$style-clipboard.rasi
|
|
fi
|