Added all the resources except screenshot

pull/1/head
pspiagicw 3 years ago
parent e6a8d2e182
commit 05d896e1f4

@ -4,7 +4,7 @@
If you are a git user, you can install the theme and keep up to date by cloning the repo:
$ git clone https://github.com/dracula/template.git
$ git clone https://github.com/dracula/grub.git
#### Install manually
@ -12,6 +12,6 @@ Download using the [GitHub .zip download](https://github.com/dracula/template/ar
#### Activating theme
1. Do this
2. Then that
3. Boom! It's working
1. Move the dracula folder to /usr/share/grub/themes/
2. Change the theme in /etc/default/grub
3. Run `sudo grub-mkconfig -o /boot/grub/grub.cfg`

@ -1,12 +1,12 @@
# Dracula for [X](http://link-to-x.com)
# Dracula for [GRUB](https://gnu.org/software/grub/)
> A dark theme for [X](http://link-to-x.com).
> A dark theme for [GRUB](https://gnu.org/software/grub/).
![Screenshot](./screenshot.png)
## Install
All instructions can be found at [draculatheme.com/x](https://draculatheme.com/x).
All instructions can be found at [draculatheme.com/grub](https://draculatheme.com/grub).
## Team
@ -18,4 +18,4 @@ This theme is maintained by the following person(s) and a bunch of [awesome cont
## License
[MIT License](./LICENSE)
[MIT License](./LICENSE)

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 723 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 698 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 695 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

@ -0,0 +1,46 @@
# GRUB2 gfxmenu pop theme, based on Linux Vimix theme
# Designed for any resolution
# Global Property
title-text: ""
desktop-image: "background.png"
desktop-image-scale-method: "stretch"
desktop-color: "#282a36"
terminal-font: "Unifont Regular 16"
terminal-left: "0"
terminal-top: "0"
terminal-width: "100%"
terminal-height: "100%"
terminal-border: "0"
# Logo image
+ image {
left = 50%-50
top = 50%-50
file = "logo.png"
}
# Show the boot menu
+ boot_menu {
left = 50%-240
top = 60%
width = 480
height = 30%
item_font = "Unifont Regular 16"
item_color = "#f6f6f6"
selected_item_color = "#f6f6f6"
item_height = 32
item_spacing = 24
selected_item_pixmap_style = "select_*.png"
}
# Show a countdown message using the label component
+ label {
top = 82%
left = 35%
width = 30%
align = "center"
id = "__timeout__"
text = "Booting in %d seconds"
color = "#f6f6f6"
}

@ -1,29 +0,0 @@
/*
* Once upon a time...
*/
class Vampire {
constructor(props) {
this.location = props.location;
this.birthDate = props.birthDate;
this.deathDate = props.deathDate;
this.weaknesses = props.weaknesses;
}
get age() {
return this.calcAge();
}
calcAge() {
return this.deathDate - this.birthDate;
}
}
// ...there was a guy named Vlad
const Dracula = new Vampire({
location: 'Transylvania',
birthDate: 1428,
deathDate: 1476,
weaknesses: ['Sunlight', 'Garlic']
});

@ -1,23 +0,0 @@
# Once upon a time...
class Vampire:
def __init__(self, props):
self.location = props['location']
self.birthDate = props['birthDate']
self.deathDate = props['deathDate']
self.weaknesses = props['weaknesses']
def get_age(self):
return self.calc_age()
def calc_age(self):
return self.deathDate - self.birthDate
# ...there was a guy named Vlad
Dracula = Vampire({
'location': 'Transylvania',
'birthDate': 1428,
'deathDate': 1476,
'weaknesses': ['Sunlight', 'Garlic']
})
Loading…
Cancel
Save