-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.config.js
118 lines (115 loc) · 3.29 KB
/
apps.config.js
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
116
117
118
import Spotify from './components/apps/spotify';
import VsCode from './components/apps/vscode';
import { displayTerminal } from './components/apps/terminal';
import Settings from './components/apps/settings';
import { displayChrome } from './components/apps/chrome';
import { displayGedit } from './components/apps/gedit';
import AppCenter from './components/apps/appcenter';
import Explorer from './components/apps/explorer';
import { displayAppCenter } from './components/apps/appcenter';
import { displayAboutVivek } from './components/apps/vivek';
import { displayTerminalCalc } from './components/apps/calc';
import { displayMonitor } from './components/apps/monitor';
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-vivek",
title: "About Vivek",
icon: '/themes/Yaru/system/user-home.png',
disabled: false,
favourite: true,
desktop_shortcut: true,
screen: displayAboutVivek,
}, */
{
id: "vscode",
title: "Visual Studio Code",
icon: '/themes/Yaru/apps/vscode.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: VsCode,
},
{
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: () => <Spotify data={{ data: true }} />
},
{
id: "settings",
title: "Settings",
icon: '/themes/Yaru/apps/gnome-control-center.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: (props) => <Settings {...props}></Settings>,
},
{
id: "explorer",
title: "Explorer",
icon: '/themes/Yaru/apps/file-manager.png',
disabled: false,
favourite: false,
desktop_shortcut: true,
screen: (props) => <Explorer {...props} />
},
/*
{
id: "gedit",
title: "Contact Me",
icon: '/themes/Yaru/apps/gedit.png',
disabled: false,
favourite: false,
desktop_shortcut: true,
screen: displayGedit,
}, */
{
id: "appstore",
title: "App Center",
icon: '/themes/Yaru/apps/software-store.png',
disabled: false,
favourite: true,
desktop_shortcut: false,
screen: (props) => <AppCenter {...props}></AppCenter>,
},
{
id: "monitor",
title: "System Monitor",
icon: '/themes/Yaru/apps/gnome-system-monitor.png',
disabled: false,
favourite: false,
desktop_shortcut: true,
screen: displayMonitor,
},
]
export default apps;