引用: Coffcer/Blog#1
项目地址: https://github.com/lemos1235/vLine-demo
项目目录结构
├─dist
│ ├─auth
│ │ └─login.html
引用: Coffcer/Blog#1
项目地址: https://github.com/lemos1235/vLine-demo
项目目录结构
├─dist
│ ├─auth
│ │ └─login.html
/* This stylesheet is generated, DO NOT EDIT */ | |
/*********** | |
* Globals * | |
***********/ | |
* { | |
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | |
transition-duration: 0.2s; } | |
stage { | |
font-family: sfns display, product sans, helvetica, open sans, source sans pro, segoe ui, ubuntu, nokia pure text, lucida grande, cantarell, sans-serif; |
#!/usr/bin/env bash | |
# | |
# Auto install latest kernel for TCP BBR | |
# | |
# System Required: CentOS 6+, Debian7+, Ubuntu12+ | |
# | |
# Copyright (C) 2016-2017 Teddysun <i@teddysun.com> | |
# | |
# URL: https://teddysun.com/489.html | |
# |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" PlugList " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Specify a directory for plugins | |
" - For Neovim: ~/.local/share/nvim/plugged | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes |
#!/bin/sh | |
# | |
# ~/.Xclients | |
# | |
# Executed by xdm/gdm/kdm at login | |
# | |
[[ -f ~/.extend.Xclients ]] && . ~/.extend.Xclients |
version: "3.2" | |
services: | |
vpn: | |
image: hwdsl2/ipsec-vpn-server | |
privileged: true | |
volumes: | |
- ./vpn.env:/opt/src/vpn.env:ro | |
ports: | |
- 500:500/udp |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" PlugList " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Specify a directory for plugins | |
" - For Neovim: ~/.local/share/nvim/plugged | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes |
CODING_URL=git@e.coding.net:xiangzhitech/ | |
GITLAB_URL=git@xiangzhi.iask.in: | |
coding_repos=(songdujingdian/sdx.git wx-open-platform/wx-api.git) | |
gitlab_repos=(songdujingdian/sdx.git xqnet/mp-assistant.git) | |
sync_branch=(dev dev) | |
WORK_DIR=~ | |
if [ ! -d "repository" ]; then | |
mkdir repository | |
fi | |
echo `date` - Start job |
-- 设置动画时间 | |
hs.window.animationDuration = 0 | |
-- 全屏显示 | |
hs.hotkey.bind({"command", "ctrl"}, "F", function() | |
local win = hs.window.focusedWindow() | |
if (win:isFullScreen()) | |
then | |
win:setFullScreen(false) | |
else |