Re: Dashticz doesn't work anymore
Posted: Wednesday 12 July 2017 21:22
Duh... Maybe I should have installed the webstation first...
*feels stupid*
*feels stupid*
Open source Home Automation System
https://forum.domoticz.com/
Code: Select all
91950e7f510e4615
Code: Select all
var _APIKEY_WUNDERGROUND = '91950e7f510e4615';
var _WEATHER_CITY = 'IGELDERL237';
var _WEATHER_CITYNAME = 'Nijmegen'; //show a different city name, leave empty if same as _WEATHER_CITY
var _WEATHER_COUNTRY = 'NL';
Code: Select all
columns[3] = {}
columns[3]['blocks'] = ['sunrise','currentweather_big','weather'];
columns[3]['width'] = 6;
Code: Select all
var _APIKEY_WUNDERGROUND = '91950e7f510e4615';
var _WEATHER_CITY = 'Nijmegen';
var _WEATHER_COUNTRY = 'NL';
Could you test latest beta?htilburgs wrote:Schermafbeelding 2017-07-12 om 23.30.45.png
Rob, the text is under the icon, instead of behind the icon like all the other blocks.
One other thing is the font, it's different from the default. Is this on purpose, or do I need to add custom.css information?
Can I also change the font-color (green is very dark with my blue background) through custom.css?
Code: Select all
.containslog .items .level0{ color:#c70626; }
.containslog .items .level1{ color:#067676; }
.containslog .items .level2{ color:#ffffff; }
.containslog .items .level0.popup{ color:#c70626; }
.containslog .items .level1.popup{ color:#067676; }
.containslog .items .level2.popup{ color:#727272; }
Is working: Perhaps a option to enlarge the tile ?Could you test latest beta?
You can override this css in custom.css:
Code: Select all
screens[1]['background'] = 'bg9.jpg';
Code: Select all
screens[1]['background'] = 'custom/bg9.jpg';
robgeerts wrote:Changed!
Before you could assign a background to a screen like:If you wanted to use your own images, you had to place them in the img-folder.Code: Select all
screens[1]['background'] = 'bg9.jpg';
From now on (in BETA), you can place them in the custom-folder and use it like:
Code: Select all
screens[1]['background'] = 'custom/bg9.jpg';
Code: Select all
screens[1]['background'] = 'custom/images/bg9.jpg';
Code: Select all
screens[1] = {}
screens[1]['background'] = 'bg1.jpg';
screens[1]['background_morning'] = 'custom/images/bg_morning_1.jpg';
screens[1]['background_noon'] = 'custom/images/bg_noon_1.jpg';
screens[1]['background_afternoon'] = 'custom/images/bg_afternoon_1.jpg';
screens[1]['background_night'] = 'custom/images/bg_night_1.jpg';
screens[1]['columns'] = [1]
screens[2] = {}
screens[2]['background'] = 'bg2.jpg';
screens[2]['background_morning'] = 'bg_morning.jpg';
screens[2]['background_noon'] = 'bg_noon.jpg';
screens[2]['background_afternoon'] = 'bg_afternoon.jpg';
screens[2]['background_night'] = 'bg_night.jpg';
screens[2]['columns'] = [4]
screens[3] = {}
screens[3]['background'] = 'bg3.jpg';
screens[3]['background_morning'] = 'custom/images/bg_morning_1.jpg';
screens[3]['background_noon'] = 'custom/images/bg_noon_1.jpg';
screens[3]['background_afternoon'] = 'custom/images/bg_afternoon_1.jpg';
screens[3]['background_night'] = 'custom/images/bg_night_1.jpg';
screens[3]['columns'] = [2,3]
screens[4] = {}
screens[4]['background'] = 'bg4.jpg';
screens[4]['background_morning'] = 'custom/images/bg_morning_1.jpg';
screens[4]['background_noon'] = 'custom/images/bg_noon_1.jpg';
screens[4]['background_afternoon'] = 'custom/images/bg_afternoon_1.jpg';
screens[4]['background_night'] = 'custom/images/bg_night_1.jpg';
screens[4]['columns'] = [5]
Code: Select all
pi@raspberrypi:~/domoticz/www/dash $ git pull
Updating ade0b8c..c87ae9d
error: Your local changes to the following files would be overwritten by merge:
js/main.js
Please, commit your changes or stash them before you can merge.
Aborting
When the change was done in the repo too just delete js/main.js and do a git pull again.Onrust wrote:I'm getting following error when doing a git pull:
@robgeerts, could this be due to the changes you made through Teamviewer? What should I do to fix this? Git noob here so not sure stashing or merging is what I want.Code: Select all
pi@raspberrypi:~/domoticz/www/dash $ git pull Updating ade0b8c..c87ae9d error: Your local changes to the following files would be overwritten by merge: js/main.js Please, commit your changes or stash them before you can merge. Aborting