add time and date
This commit is contained in:
parent
08b356dd0a
commit
57aeac53d9
@ -92,6 +92,7 @@ export default {
|
||||
.white{color: #fff;}
|
||||
.green{color: #44dd88;}
|
||||
.blue{color: #0081b1;}
|
||||
.red{color: #ac311c;}
|
||||
input{
|
||||
background-color: #0000;
|
||||
border: 0;
|
||||
|
@ -82,6 +82,20 @@ let commands = [
|
||||
{color: "white", content: "meet", delay: 500},
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "time",
|
||||
output(){ return[
|
||||
{color: "white", content: "your current time is: ", delay: 100},
|
||||
{color: "blue", content: function(){return new Date().toLocaleTimeString()}(), delay: 200},
|
||||
]}
|
||||
},
|
||||
{
|
||||
name: "date",
|
||||
output(){ return[
|
||||
{color: "white", content: "your current date is: ", delay: 100},
|
||||
{color: "blue", content: function(){return new Date().toLocaleDateString()}(), delay: 200},
|
||||
]}
|
||||
},
|
||||
{
|
||||
name: ["social", "mastodon", "Mastodon", "mstdn"],
|
||||
output:[
|
||||
|
Loading…
Reference in New Issue
Block a user