forked from vivek9patel/vivek9patel.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.config.js
95 lines (93 loc) · 2.6 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
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 { displayAboutVivek } from './components/apps/vivek';
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-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: 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, // India Top 50 Playlist 😅
},
{
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,
},
]
export default apps;