MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. smithdsl
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 4
    • Groups 0

    smithdsl

    @smithdsl

    0
    Reputation
    576
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    smithdsl Unfollow Follow

    Latest posts made by smithdsl

    • RE: Blank black screen | Noob

      @MichMich How do I dump the log file?

      posted in Troubleshooting
      S
      smithdsl
    • RE: Change Currentweather colors

      Hey @Anachor ,

      This is what I found. Let start by saying I’m a new to css and java, But I seem to be learning something from this ( or just lucky). I found that the order a module loads needs to be listed in the custom.css file. This is have my default layout looks:

      alert module 0
      clock module 1
      calendar module 2
      compliments module 3
      currentweather module 4
      weatherforecast module 5
      newsfeed module 6

      So to change the sunrise and sunset icon colors I add the “module_4_currentweather” before the css tag .wi-sunrise:

      #module_4_currentweather .wi-sunrise {
              color: #ff0;
      }
      #module_4_currentweather .wi-sunset {
              color: #eb0;
      }
      

      Same thing for rain and showers tags:

      #module_4_currentweather .wi-night-showers {
              color: #07f;
      }
      #module_4_currentweather .wi-degrees {
              color: #415;
      }
      
      #module_4_currentweather  .wi-rain {
              color: #00f;
      

      I’m attaching my custom file so you can take a look.
      0_1470076546710_custom.css

      It does not change all icons yet, some tags I have not found the right name for. But I hope it helps.


      Note from admin: Please use Markdown on code snippets for easier reading!

      posted in Development
      S
      smithdsl
    • RE: Blank black screen | Noob

      pi@raspberrypi:/usr/share/X11/locale/en_US.UTF-8 $ ls -aF
      ./ …/ Compose XI18N_OBJS XLC_LOCALE
      pi@raspberrypi:/usr/share/X11/locale/en_US.UTF-8 $

      posted in Troubleshooting
      S
      smithdsl
    • RE: Blank black screen | Noob

      Hey Everyone,
      I was have the same issue. Change from ‘en’ to ’ ’ now it works.
      @KirAsh4 this is my “locale” folder.

      pi@raspberrypi:~ $ sudo ls -aF /usr/share/X11/locale/
      ./            fi_FI.UTF-8/       iso8859-11/  iso8859-6/    ja.SJIS/      locale.dir         sr_CS.UTF-8/   zh_CN.gb18030/    zh_TW.UTF-8/
      ../           georgian-academy/  iso8859-13/  iso8859-7/    km_KH.UTF-8/  microsoft-cp1251/  tatar-cyr/     zh_CN.gbk/
      am_ET.UTF-8/  georgian-ps/       iso8859-14/  iso8859-8/    ko/           microsoft-cp1255/  th_TH/         zh_CN.UTF-8/
      armscii-8/    ibm-cp1133/        iso8859-15/  iso8859-9/    koi8-c/       microsoft-cp1256/  th_TH.UTF-8/   zh_HK.big5/
      C/            iscii-dev/         iso8859-2/   iso8859-9e/   koi8-r/       mulelao-1/         tscii-0/       zh_HK.big5hkscs/
      compose.dir   isiri-3342/        iso8859-3/   ja/           koi8-u/       nokhchi-1/         vi_VN.tcvn/    zh_HK.UTF-8/
      el_GR.UTF-8/  iso8859-1/         iso8859-4/   ja.JIS/       ko_KR.UTF-8/  pt_BR.UTF-8/       vi_VN.viscii/  zh_TW/
      en_US.UTF-8/  iso8859-10/        iso8859-5/   ja_JP.UTF-8/  locale.alias  ru_RU.UTF-8/       zh_CN/         zh_TW.big5/
      pi@raspberrypi:~ $
      

      Thanks.

      posted in Troubleshooting
      S
      smithdsl