This file contains hidden or 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
<template> | |
<div id="scheme-switch"> | |
<button type="button" id="scheme-switch--light" @click="setLightTheme"> | |
<slot name="light">Light theme</slot> | |
</button> | |
<button type="button" id="scheme-switch--dark" @click="setDarkTheme"> | |
<slot name="dark">Dark theme</slot> | |
</button> | |
</div> | |
</template> |
This file contains hidden or 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/sh | |
# | |
# chkconfig: 35 99 01 | |
# description: java application | |
# | |
if [ -z "$JRE_HOME" ]; then | |
JRE_HOME="$JAVA_HOME" | |
fi | |
if [ -z "$JRE_HOME" ]; then |