I am currently working on updating this guide after updating my media server. I have added notes on things I no longer use but may update those sections in the future for users who still use them. As of now, I have everything working with the exception of Ombi and the plugins I no longer use.
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
<div class="header"></div> | |
<input type="checkbox" class="openSidebarMenu" id="openSidebarMenu"> | |
<label for="openSidebarMenu" class="sidebarIconToggle"> | |
<div class="spinner diagonal part-1"></div> | |
<div class="spinner horizontal"></div> | |
<div class="spinner diagonal part-2"></div> | |
</label> | |
<div id="sidebarMenu"> | |
<ul class="sidebarMenuInner"> | |
<li>Jelena Jovanovic <span>Web Developer</span></li> |
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
# Named Directories | |
hash -d proj=/mnt/d/DevProjects/ | |
# Aliases | |
alias -g gp=' | grep -i' | |
# Show all alias related docker | |
dalias() { alias | grep 'docker' | sed "s/^\([^=]*\)=\(.*\)/\1 => \2/"| sed "s/['|\']//g" | sort; } | |
# Bash into running container |
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
# | |
# Script to start, stop, restart Jekyll Dev Environment container | |
# | |
# Set default parameter set | |
[cmdletbinding(DefaultParameterSetName='container')] | |
# Intialize parameters | |
param ( | |
[Parameter(Mandatory = $true)] |