Dock image updates
parent
0aa31fe64c
commit
f115c2e035
|
@ -61,46 +61,46 @@ export default {
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Finder',
|
label: 'Finder',
|
||||||
icon: 'images/dock/finder.svg',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/finder.svg',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.displayFinder = true;
|
this.displayFinder = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Terminal',
|
label: 'Terminal',
|
||||||
icon: 'images/dock/terminal.svg',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/terminal.svg',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.displayTerminal = true;
|
this.displayTerminal = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'App Store',
|
label: 'App Store',
|
||||||
icon: 'images/dock/appstore.svg',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/appstore.svg',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.$toast.add({ severity: 'error', summary: 'An unexpected error occurred while signing in.', detail: 'UNTRUSTED_CERT_TITLE', group: 'tc', life: 3000 });
|
this.$toast.add({ severity: 'error', summary: 'An unexpected error occurred while signing in.', detail: 'UNTRUSTED_CERT_TITLE', group: 'tc', life: 3000 });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Safari',
|
label: 'Safari',
|
||||||
icon: 'images/dock/safari.svg',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/safari.svg',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.$toast.add({ severity: 'warn', summary: 'Safari has stopped working', group: 'tc', life: 3000 });
|
this.$toast.add({ severity: 'warn', summary: 'Safari has stopped working', group: 'tc', life: 3000 });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Photos',
|
label: 'Photos',
|
||||||
icon: 'images/dock/photos.svg',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/photos.svg',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.displayPhotos = true;
|
this.displayPhotos = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'GitHub',
|
label: 'GitHub',
|
||||||
icon: 'images/dock/github.svg'
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/github.svg'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Trash',
|
label: 'Trash',
|
||||||
icon: 'images/dock/trash.png',
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/trash.png',
|
||||||
command: () => {
|
command: () => {
|
||||||
this.$toast.add({ severity: 'info', summary: 'Empty Trash', life: 3000 });
|
this.$toast.add({ severity: 'info', summary: 'Empty Trash', life: 3000 });
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,19 +27,19 @@ export default {
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Finder',
|
label: 'Finder',
|
||||||
icon: 'images/dock/finder.svg'
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/finder.svg'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'App Store',
|
label: 'App Store',
|
||||||
icon: 'images/dock/appstore.svg'
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/appstore.svg'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Photos',
|
label: 'Photos',
|
||||||
icon: 'images/dock/photos.svg'
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/photos.svg'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Trash',
|
label: 'Trash',
|
||||||
icon: 'images/dock/trash.png'
|
icon: 'https://primefaces.org/cdn/primevue/images/dock/trash.png'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
position: 'bottom',
|
position: 'bottom',
|
||||||
|
|
Loading…
Reference in New Issue