forked from vivek9patel/vivek9patel.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.config.js
More file actions
115 lines (114 loc) · 3.11 KB
/
Copy pathapps.config.js
File metadata and controls
115 lines (114 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import displaySpotify from './components/apps/spotify';
import displayVsCode from './components/apps/vscode';
import { displayTerminal } from './components/apps/terminal';
import { displaySettings } from './components/apps/settings';
import { displayChrome } from './components/apps/chrome';
import { displayTrash } from './components/apps/trash';
import { displayGedit } from './components/apps/gedit';
import { displayAboutUriel } from './components/apps/me';
import { displayTalks } from './components/apps/me';
import { displayTerminalCalc } from './components/apps/calc';
const apps = [
{
id: "chrome",
title: "Google Chrome",
icon: './themes/Yaru/apps/chrome.png',
disabled: false,
favourite: true,
desktop_shortcut: true,
screen: displayChrome,
},
{
id: "calc",
title: "Calc",
icon: './themes/Yaru/apps/calc.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: displayTerminalCalc,
},
{
id: "about-uriel",
title: "About Uriel",
icon: './themes/Yaru/system/user-home.png',
disabled: false,
favourite: true,
desktop_shortcut: true,
screen: displayAboutUriel,
},
{
id: "vscode",
title: "Visual Studio Code",
icon: './themes/Yaru/apps/vscode.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: displayVsCode,
},
{
id: "terminal",
title: "Terminal",
icon: './themes/Yaru/apps/bash.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: displayTerminal,
},
{
id: "spotify",
title: "Spotify",
icon: './themes/Yaru/apps/spotify.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: displaySpotify,
},
{
id: "settings",
title: "Settings",
icon: './themes/Yaru/apps/gnome-control-center.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: displaySettings,
},
{
id: "trash",
title: "Trash",
icon: './themes/Yaru/system/user-trash-full.png',
disabled: false,
favourite: false,
desktop_shortcut: true,
screen: displayTrash,
},
{
id: "gedit",
title: "Contact Me",
icon: './themes/Yaru/apps/gedit.png',
disabled: false,
favourite: false,
desktop_shortcut: true,
screen: displayGedit,
},
{
id: "Talks",
title: "Talks",
icon: './themes/Yaru/system/user-home.png',
disabled: false,
favourite: true,
desktop_shortcut: true,
screen: displayTalks,
},
{
id: "github",
title: "GitHub",
icon: './themes/Yaru/apps/github.svg',
disabled: false,
favourite: true,
desktop_shortcut: true,
screen: () => {},
isExternalApp: true,
url: "https://github.com/urielsalis",
},
]
export default apps;