Matgen84 Posted December 17, 2018 Share Posted December 17, 2018 (edited) 28 minutes ago, blackosx said: Good point about custom images and I don't know the answer to that. I guess that's not been implemented yet. Yes, the night/day switching option is default in Clover. If the theme contains images for night then they will be shown when viewing at the appropriate time of day. Are you after an option to disable this day/night switching and say, always show the daytime version? I don't test. But there is now Timezone and daytime strings in config.plist (r4773) Edited December 17, 2018 by Matgen84 Link to comment Share on other sites More sharing options...
SavageAUS Posted December 17, 2018 Share Posted December 17, 2018 Good point about custom images and I don't know the answer to that. I guess that's not been implemented yet. Yes, the night/day switching option is default in Clover. If the theme contains images for night then they will be shown when viewing at the appropriate time of day. Are you after an option to disable this day/night switching and say, always show the daytime version? Ok was just curious, thought I saw somewhere that we need to add “Daytime” to embeddedthemetype in config.plist.Hopefully custom images for custom entries will be implemented soon. Sent from my iPhone using Tapatalk 1 Link to comment Share on other sites More sharing options...
burkett375 Posted December 17, 2018 Share Posted December 17, 2018 On Clovy - I have a widescreen monitor (3440x1440), but the background is set for 16:9, so I have black bars on the sides. I have the resolution set in the config.plist and all other themes work with that resolution. Any way to get rid of the black bars? Thanks! Link to comment Share on other sites More sharing options...
blackosx Posted December 17, 2018 Share Posted December 17, 2018 (edited) I don't test. But there is now Timezone and daytime strings in config.plist (r4773) Ok was just curious, thought I saw somewhere that we need to add “Daytime” to embeddedthemetype in config.plist. Thanks for the note. Looking at the code, the EmbeddedThemeType setting is for the embedded theme only. You can set it to Light or Dark, or choose Daytime which will toggle Light or Dark depending on the time of day. Hopefully custom images for custom entries will be implemented soon. Yeah. I'll try to take look at what's happening. Though I'm sure Slice will be quicker to provide a solution. Edited December 17, 2018 by blackosx Link to comment Share on other sites More sharing options...
blackosx Posted December 17, 2018 Share Posted December 17, 2018 (edited) 2 hours ago, burkett375 said: On Clovy - I have a widescreen monitor (3440x1440), but the background is set for 16:9, so I have black bars on the sides. I have the resolution set in the config.plist and all other themes work with that resolution. Any way to get rid of the black bars? Thanks! This is obviously not right. I would have thought the background could be scaled independently of the icons. Hopefully this will be resolved soon. Edited December 17, 2018 by blackosx Link to comment Share on other sites More sharing options...
burkett375 Posted December 17, 2018 Share Posted December 17, 2018 4 hours ago, burkett375 said: On Clovy - I have a widescreen monitor (3440x1440), but the background is set for 16:9, so I have black bars on the sides. I have the resolution set in the config.plist and all other themes work with that resolution. Any way to get rid of the black bars? Thanks! 2 hours ago, blackosx said: This is obviously not right. I would have thought the background could be scaled independently of the icons. Hopefully this will be resolved soon. Sorry, meant to attach a screenshot, too. Link to comment Share on other sites More sharing options...
Slice Posted December 18, 2018 Author Share Posted December 18, 2018 Open Clovy/theme.svg with TextEdit and change the line BackgroundScale="crop" to BackgroundScale="scale" I am not sure if it helps as it is Clover bug not scaling images to such monitors. Link to comment Share on other sites More sharing options...
luky35 Posted December 18, 2018 Share Posted December 18, 2018 @Slice hi, Please help me with how to move the CLOVER symbol (in the image) to the center. Thank you very much. Clovy Link to comment Share on other sites More sharing options...
Slice Posted December 18, 2018 Author Share Posted December 18, 2018 44 minutes ago, luky35 said: @Slice hi, Please help me with how to move the CLOVER symbol (in the image) to the center. Thank you very much. Clovy It depends on how did you make it shifted. Link to comment Share on other sites More sharing options...
luky35 Posted December 18, 2018 Share Posted December 18, 2018 25 minutes ago, Slice said: It depends on how did you make it shifted. set the resolution 1920x1080 and it's great Link to comment Share on other sites More sharing options...
SavageAUS Posted December 19, 2018 Share Posted December 19, 2018 (edited) It's 11:35am here should the BGM_SVG be this colour or green? Edit: Never mind, bios clock was wrong. For some reason it keeps changing. Edited December 19, 2018 by SavageAUS Link to comment Share on other sites More sharing options...
burkett375 Posted December 19, 2018 Share Posted December 19, 2018 16 hours ago, Slice said: Open Clovy/theme.svg with TextEdit and change the line BackgroundScale="crop" to BackgroundScale="scale" I am not sure if it helps as it is Clover bug not scaling images to such monitors. That worked, thanks! Link to comment Share on other sites More sharing options...
SavageAUS Posted December 21, 2018 Share Posted December 21, 2018 How can I add my Timezone to clover for vector themes to show day/night modes correctly. My bios seems to be using utc instead of local time. Sent from my iPhone using Tapatalk Link to comment Share on other sites More sharing options...
apianti Posted December 21, 2018 Share Posted December 21, 2018 Set the key GUI/Timezone to an integer offset from UTC in config.plist. Link to comment Share on other sites More sharing options...
SavageAUS Posted December 21, 2018 Share Posted December 21, 2018 Set the key GUI/Timezone to an integer offset from UTC in config.plist.Could you please share an example of how this would be written?Sent from my iPhone using Tapatalk Link to comment Share on other sites More sharing options...
apianti Posted December 21, 2018 Share Posted December 21, 2018 <key>GUI</key> <dict> <key>Timezone</key> <integer>-5</integer> </dict> Link to comment Share on other sites More sharing options...
luky35 Posted December 21, 2018 Share Posted December 21, 2018 1 hour ago, apianti said: <key>GUI</key> <dict> <key>Timezone</key> <integer>-5</integer> </dict> Where does this enter in the config.plist please? I attach my config.plist. config.plist.zip Link to comment Share on other sites More sharing options...
blackosx Posted December 21, 2018 Share Posted December 21, 2018 It goes inside the GUI dict exactly as apianti showed in his example. Just add it under your theme entry for example. Link to comment Share on other sites More sharing options...
luky35 Posted December 21, 2018 Share Posted December 21, 2018 23 minutes ago, blackosx said: It goes inside the GUI dict exactly as apianti showed in his example. Just add it under your theme entry for example. I did not work, I'm doing something wrong. Link to comment Share on other sites More sharing options...
SavageAUS Posted December 21, 2018 Share Posted December 21, 2018 (edited) 3 hours ago, apianti said: <key>GUI</key> <dict> <key>Timezone</key> <integer>-5</integer> </dict> Thank you. This worked for me. South Australia. What time should vector themes change to "night"? Edited December 21, 2018 by SavageAUS Link to comment Share on other sites More sharing options...
luky35 Posted December 21, 2018 Share Posted December 21, 2018 57 minutes ago, SavageAUS said: Thank you. This worked for me. South Australia. What time should vector themes change to "night"? Which tool do you use config.plist? Link to comment Share on other sites More sharing options...
Slice Posted December 21, 2018 Author Share Posted December 21, 2018 1 hour ago, SavageAUS said: Thank you. This worked for me. South Australia. What time should vector themes change to "night"? A vector theme will always be time dependent if *_night images present inside. If local time is between 8:00 and 20:00 then this is daylight. Else it is night. 7 minutes ago, luky35 said: Which tool do you use config.plist? Xcode.app ? Link to comment Share on other sites More sharing options...
SavageAUS Posted December 21, 2018 Share Posted December 21, 2018 Which tool do you use config.plist?XcodeSent from my iPhone using Tapatalk Link to comment Share on other sites More sharing options...
luky35 Posted December 21, 2018 Share Posted December 21, 2018 (edited) 19 hours ago, SavageAUS said: Xcode Sent from my iPhone using Tapatalk Clovy themes show normal day and night on the icons of the time of the Boot. I do not have any Timezone .. or in the config.plist. DayTime. @Slice did it great, only when it could reduce the size of the icons according to the user's monitor. For my monitor 23.8 ich the best size is 128x128. Edited December 22, 2018 by luky35 Link to comment Share on other sites More sharing options...
apianti Posted December 21, 2018 Share Posted December 21, 2018 Install Xcode from the app store and it includes a plist editor, so when you just open your config.plist it will open in the plist editor. Link to comment Share on other sites More sharing options...
Recommended Posts