Added all the resources except screenshot
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 709 B |
After Width: | Height: | Size: 567 B |
After Width: | Height: | Size: 723 B |
After Width: | Height: | Size: 607 B |
After Width: | Height: | Size: 741 B |
After Width: | Height: | Size: 787 B |
After Width: | Height: | Size: 630 B |
After Width: | Height: | Size: 528 B |
After Width: | Height: | Size: 683 B |
After Width: | Height: | Size: 518 B |
After Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 623 B |
After Width: | Height: | Size: 698 B |
After Width: | Height: | Size: 416 B |
After Width: | Height: | Size: 708 B |
After Width: | Height: | Size: 700 B |
After Width: | Height: | Size: 553 B |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 657 B |
After Width: | Height: | Size: 658 B |
After Width: | Height: | Size: 658 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 623 B |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 695 B |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
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']
|
||||
})
|