#!/bin/bash if [ "$PLAYONLINUX" = "" ] then exit 0 fi source "$PLAYONLINUX/lib/sources" blue() { echo '[HKEY_CURRENT_USER\Control Panel\Colors] 1197752598 "ActiveBorder"="212 208 200" "ActiveTitle"="94 129 188" "AppWorkSpace"="128 128 128" "Background"="16 26 38" "ButtonAlternateFace"="181 181 181" "ButtonDkShadow"="133 135 140" "ButtonFace"="235 233 237" "ButtonHilight"="255 255 255" "ButtonLight"="220 223 228" "ButtonShadow"="167 166 170" "ButtonText"="0 0 0" "GradientActiveTitle"="112 177 235" "GradientInactiveTitle"="131 183 227" "GrayText"="167 166 170" "Hilight"="94 129 188" "HilightText"="255 255 255" "HotTrackingColor"="0 0 128" "InactiveBorder"="212 208 200" "InactiveTitle"="111 161 217" "InactiveTitleText"="255 255 255" "InfoText"="0 0 0" "InfoWindow"="255 255 225" "Menu"="255 255 255" "MenuBar"="235 233 237" "MenuHilight"="94 129 188" "MenuText"="0 0 0" "Scrollbar"="212 208 200" "TitleText"="255 255 255" "Window"="255 255 255" "WindowFrame"="0 0 0" "WindowText"="0 0 0" [HKEY_CURRENT_USER\Control Panel\Desktop] 1197752598 "DragFullWindows"="0" "FontSmoothing"="0" "LowPowerActive"="0" "SmoothScroll"=hex:00,00,00,00 "UserPreferencemask"=hex:10,00,02,00 [HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics] 1197752598 "BorderWidth"="1" "CaptionFont"=hex:f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,bc,02,00,00,\ 00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,20,\ 00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 "CaptionHeight"="18" "CaptionWidth"="18" "IconFont"=hex:08,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,\ 00,00,01,00,00,00,00,54,00,61,00,68,00,6f,00,6d,00,61,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 "MenuFont"=hex:f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,\ 00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,20,00,\ 44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 "MenuHeight"="18" "MenuWidth"="18" "MessageFont"=hex:f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,\ 00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,20,\ 00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 "ScrollHeight"="16" "ScrollWidth"="16" "Shell Icon Size"="32" "SmCaptionFont"=hex:08,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,\ 00,01,00,00,01,00,00,00,00,54,00,61,00,68,00,6f,00,6d,00,61,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 "SmCaptionHeight"="17" "SmCaptionWidth"="17" "StatusFont"=hex:f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,\ 00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,20,\ 00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00' > $REPERTOIRE/tmp/theme.reg } cd $REPERTOIRE/wineprefix/ reponse=$(menu "Choisissez un préfixe de wine" "$(ls -1)" "Choisissez un préfixe" 1 2 1 "" --cut-line) if [ "$reponse" = "" ] then exit fi select_prefixe "$REPERTOIRE/wineprefix/$reponse" theme=$(menu "Choisissez un thème" "Blue" "Choisissez un thème" 1 2 1 "" "~") if [ "$theme" = "" ] then exit fi if [ "$theme" = "Blue" ] then blue regedit $REPERTOIRE/tmp/theme.reg fi