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 | |
if [ "`/usr/bin/whoami`" != "root" ]; then | |
echo "You need to execute this script as root." | |
exit 1 | |
fi | |
############################################################################### | |
# ffmpeg installer for centos 7 | |
# based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos |
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
echo 'patch: | |
style: | |
color_scheme: apathy | |
horizontal: true | |
inline_preedit: true | |
candidate_format: "%c\u2005%@ \u2005" # 用 1/6 em 空格 U+2005 来控制编号 %c 和候选词 %@ 前后的空间。 | |
font_point: 16 # 候选文字大小 | |
label_font_point: 14 # 候选编号大小 | |
corner_radius: 5 # 候选条圆角 | |
border_height: 0 # 窗口边界高度,大于圆角半径才生效 |
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
{ | |
"root": true, | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
extends: "airbnb-base", | |
rules: { | |
}, |