Jump to content

mmm

Member
  • Posts

    4
  • Joined

  • Last visited

Reputation Activity

  1. Like
    mmm got a reaction from vitor in Name of current weekday as localised string   
    Sorry for the long wait. This is a PERFECT solution! Just tested it, works flawlessly!
     
    Thanks so much - I wish all the best things will happen to you! 😃
  2. Thanks
    mmm reacted to vitor in Name of current weekday as localised string   
    Welcome @mmm,
     
     
    Then I suggest a Run Script with /bin/bash or /bin/zsh as the language:
     
    case "$(date +%A)" in Monday) echo -n 'Mandag'   ;; Tuesday) echo -n 'Tirsdag' ;; Wednesday) echo -n 'Onsdag' ;; Thursday) echo -n 'Torsdag' ;; Friday) echo -n 'Fredag' ;; Saturday) echo -n 'Lørdag' ;; Sunday) echo -n 'Søndag' ;; *) echo 'Not a valid weekday! Should never happen.' >&2 ;; esac  
×
×
  • Create New...