This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
path_working_dir="$HOME" | |
prefix="bookii" | |
# in diesem Verzeicnis soll die neue Bottle (=Prefix) entstehen | |
path_bottles="$path_working_dir/Bottles" | |
# in diesen Verzeichnissen liegen die benötigten Dateien | |
# - winetricks.sh (wird heruntergelade | |
# - BOOKiiSoftwareInstaller.exe (https://www.bookii.de/site/uploads/2019/03/BOOKiiSoftwareInstaller.zip) | |
# - BOOKii.exe (auf dem Stift oder [hier](blog.pixelwoelkchen.de/assets/Bookii.zip)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// built upon | |
// https://codereview.stackexchange.com/a/215317/236617 | |
// https://basarat.gitbook.io/typescript/main-1/typed-event | |
// https://stackoverflow.com/a/66003746/14979776 | |
interface Disposable { | |
dispose(): void; | |
} | |
// used to check if parameters for .emit() are valid parameters for the event |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<<!DOCTYPE html> | |
<html lang="en-GB"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<meta name="color-scheme" content="dark light"> | |
<title data-i18n-key="page_title">DEMO! Scroll Navigation</title> | |
<link rel="stylesheet" href="style.css" /> | |
<link rel="icon" href="icon.svg" /> | |
<script type="module" src="js/scrollnav.js"></script> |