mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
feat(lint): added my linting configs
This commit is contained in:
3
.commitlintrc.json
Normal file
3
.commitlintrc.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": ["@ivuorinen/commitlint-config"]
|
||||
}
|
||||
3
.eslintrc.json
Normal file
3
.eslintrc.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": ["@ivuorinen"]
|
||||
}
|
||||
2
.gitattributes
vendored
2
.gitattributes
vendored
@@ -13,7 +13,7 @@
|
||||
## Handle line endings automatically for files detected as
|
||||
## text and leave all files detected as binary untouched.
|
||||
## This will handle all files NOT defined below.
|
||||
* text=auto
|
||||
* text=auto oel=lf
|
||||
|
||||
# Source code
|
||||
*.bash text eol=lf
|
||||
|
||||
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -1,7 +1,7 @@
|
||||
version: 2
|
||||
updates:
|
||||
# Maintain dependencies for GitHub Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
- package-ecosystem: 'github-actions'
|
||||
directory: '/'
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
interval: 'weekly'
|
||||
|
||||
4
.github/renovate.json
vendored
4
.github/renovate.json
vendored
@@ -1,6 +1,4 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>ivuorinen/.github:renovate-config"
|
||||
]
|
||||
"extends": ["local>ivuorinen/.github:renovate-config"]
|
||||
}
|
||||
|
||||
12
.github/tag-changelog-config.js
vendored
12
.github/tag-changelog-config.js
vendored
@@ -16,11 +16,11 @@ module.exports = {
|
||||
excludeTypes: [],
|
||||
|
||||
renderTypeSection: function (label, commits) {
|
||||
let text = `\n## ${ label }\n\n`
|
||||
let text = `\n## ${label}\n\n`
|
||||
|
||||
commits.forEach((commit) => {
|
||||
const scope = commit.scope ? `**${ commit.scope }:** ` : ''
|
||||
text += `- ${ scope }${ commit.subject }\n`
|
||||
commits.forEach(commit => {
|
||||
const scope = commit.scope ? `**${commit.scope}:** ` : ''
|
||||
text += `- ${scope}${commit.subject}\n`
|
||||
})
|
||||
|
||||
return text
|
||||
@@ -28,8 +28,8 @@ module.exports = {
|
||||
|
||||
renderChangelog: function (release, changes) {
|
||||
const now = new Date()
|
||||
const d = now.toISOString().substring(0, 10);
|
||||
const header = `# ${ release } - ${ d }\n`;
|
||||
const d = now.toISOString().substring(0, 10)
|
||||
const header = `# ${release} - ${d}\n`
|
||||
return header + changes + '\n\n'
|
||||
},
|
||||
}
|
||||
|
||||
2
.github/workflows/changelog.yml
vendored
2
.github/workflows/changelog.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
config_file: .github/tag-changelog-config.js
|
||||
- name: "Echo results"
|
||||
- name: 'Echo results'
|
||||
id: output-changelog
|
||||
run: |
|
||||
echo "${{ steps.changelog.outputs.changes }}"
|
||||
|
||||
2
.github/workflows/new-release.yml
vendored
2
.github/workflows/new-release.yml
vendored
@@ -2,7 +2,7 @@ name: Release Daily State # Workflow name displayed on GitHub
|
||||
on:
|
||||
workflow_dispatch: # Trigger manually
|
||||
schedule:
|
||||
- cron: "30 20 * * *" # UTC is 2-3 hours behind Europe/Helsinki, my timezone
|
||||
- cron: '30 20 * * *' # UTC is 2-3 hours behind Europe/Helsinki, my timezone
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
|
||||
2
.github/workflows/update-submodules.yml
vendored
2
.github/workflows/update-submodules.yml
vendored
@@ -1,6 +1,6 @@
|
||||
name: Update submodules
|
||||
on:
|
||||
schedule: [{cron: 0 3 * * *}]
|
||||
schedule: [{ cron: 0 3 * * * }]
|
||||
workflow_dispatch:
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -14,4 +14,5 @@ ssh/local.d/*
|
||||
!.gitkeep
|
||||
.env
|
||||
local/share/fonts/NerdFonts
|
||||
node_modules
|
||||
|
||||
|
||||
2
.ignore
2
.ignore
@@ -3,4 +3,4 @@ config/cheat/cheatsheets/community/**
|
||||
tools/dotbot/**
|
||||
tools/dotbot-brew/**
|
||||
tools/dotbot-include/**
|
||||
|
||||
node_modules
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "markdownlint/style/prettier",
|
||||
"extends": "@ivuorinen/markdownlint-config",
|
||||
"code-block-style": {
|
||||
"style": "fenced"
|
||||
},
|
||||
|
||||
6
.markdownlintignore
Normal file
6
.markdownlintignore
Normal file
@@ -0,0 +1,6 @@
|
||||
# only care about files that are under our control
|
||||
config/cheat/cheatsheets/community/*
|
||||
config/tmux/plugins/*
|
||||
tools/*
|
||||
node_modules/*
|
||||
|
||||
8
.prettierignore
Normal file
8
.prettierignore
Normal file
@@ -0,0 +1,8 @@
|
||||
.mypy_cache/*
|
||||
tools/dotbot*
|
||||
local/bin/antigen.zsh
|
||||
config/cheat/cheatsheets/community
|
||||
config/tmux/plugins/*
|
||||
lazy-lock.json
|
||||
Brewfile.lock.json
|
||||
|
||||
14
.prettierrc.js
Normal file
14
.prettierrc.js
Normal file
@@ -0,0 +1,14 @@
|
||||
module.exports = {
|
||||
...require('@ivuorinen/prettier-config'),
|
||||
trailingComma: 'all',
|
||||
// Add custom options below:
|
||||
overrides: [
|
||||
{
|
||||
files: '*.md',
|
||||
options: {
|
||||
printWidth: 120,
|
||||
proseWrap: 'preserve',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
21
.yamlfmt
21
.yamlfmt
@@ -1,21 +0,0 @@
|
||||
formatter:
|
||||
type: basic
|
||||
indent: 2
|
||||
retain_line_breaks: false
|
||||
disallow_anchors: false
|
||||
max_line_length: 0
|
||||
scan_folded_as_literal: false
|
||||
indentless_arrays: false
|
||||
|
||||
doublestar: true
|
||||
|
||||
extensions:
|
||||
- yaml
|
||||
- yml
|
||||
|
||||
include:
|
||||
- ./*.{yml,yaml}
|
||||
- ./**/*.{yml,yaml}
|
||||
|
||||
exclude:
|
||||
- ./tools/**
|
||||
@@ -1,2 +0,0 @@
|
||||
# .yamlignore
|
||||
|
||||
@@ -78,82 +78,82 @@ debug.render_timer: false
|
||||
# https://github.com/catppuccin/alacritty
|
||||
colors:
|
||||
primary:
|
||||
background: "#1E1E2E" # base
|
||||
foreground: "#CDD6F4" # text
|
||||
background: '#1E1E2E' # base
|
||||
foreground: '#CDD6F4' # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground: "#CDD6F4" # text
|
||||
bright_foreground: "#CDD6F4" # text
|
||||
dim_foreground: '#CDD6F4' # text
|
||||
bright_foreground: '#CDD6F4' # text
|
||||
|
||||
# Cursor colors
|
||||
cursor:
|
||||
text: "#1E1E2E" # base
|
||||
cursor: "#F5E0DC" # rosewater
|
||||
text: '#1E1E2E' # base
|
||||
cursor: '#F5E0DC' # rosewater
|
||||
vi_mode_cursor:
|
||||
text: "#1E1E2E" # base
|
||||
cursor: "#B4BEFE" # lavender
|
||||
text: '#1E1E2E' # base
|
||||
cursor: '#B4BEFE' # lavender
|
||||
|
||||
# Search colors
|
||||
search:
|
||||
matches:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
foreground: '#1E1E2E' # base
|
||||
background: '#A6ADC8' # subtext0
|
||||
focused_match:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6E3A1" # green
|
||||
foreground: '#1E1E2E' # base
|
||||
background: '#A6E3A1' # green
|
||||
footer_bar:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
foreground: '#1E1E2E' # base
|
||||
background: '#A6ADC8' # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
hints:
|
||||
start:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#F9E2AF" # yellow
|
||||
foreground: '#1E1E2E' # base
|
||||
background: '#F9E2AF' # yellow
|
||||
end:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
foreground: '#1E1E2E' # base
|
||||
background: '#A6ADC8' # subtext0
|
||||
|
||||
# Selection colors
|
||||
selection:
|
||||
text: "#1E1E2E" # base
|
||||
background: "#F5E0DC" # rosewater
|
||||
text: '#1E1E2E' # base
|
||||
background: '#F5E0DC' # rosewater
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: "#45475A" # surface1
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#BAC2DE" # subtext1
|
||||
black: '#45475A' # surface1
|
||||
red: '#F38BA8' # red
|
||||
green: '#A6E3A1' # green
|
||||
yellow: '#F9E2AF' # yellow
|
||||
blue: '#89B4FA' # blue
|
||||
magenta: '#F5C2E7' # pink
|
||||
cyan: '#94E2D5' # teal
|
||||
white: '#BAC2DE' # subtext1
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: "#585B70" # surface2
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#A6ADC8" # subtext0
|
||||
black: '#585B70' # surface2
|
||||
red: '#F38BA8' # red
|
||||
green: '#A6E3A1' # green
|
||||
yellow: '#F9E2AF' # yellow
|
||||
blue: '#89B4FA' # blue
|
||||
magenta: '#F5C2E7' # pink
|
||||
cyan: '#94E2D5' # teal
|
||||
white: '#A6ADC8' # subtext0
|
||||
|
||||
# Dim colors
|
||||
dim:
|
||||
black: "#45475A" # surface1
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#BAC2DE" # subtext1
|
||||
black: '#45475A' # surface1
|
||||
red: '#F38BA8' # red
|
||||
green: '#A6E3A1' # green
|
||||
yellow: '#F9E2AF' # yellow
|
||||
blue: '#89B4FA' # blue
|
||||
magenta: '#F5C2E7' # pink
|
||||
cyan: '#94E2D5' # teal
|
||||
white: '#BAC2DE' # subtext1
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: "#FAB387" }
|
||||
- { index: 17, color: "#F5E0DC" }
|
||||
- { index: 16, color: '#FAB387' }
|
||||
- { index: 17, color: '#F5E0DC' }
|
||||
|
||||
# Visual Bell
|
||||
#
|
||||
@@ -262,7 +262,7 @@ key_bindings:
|
||||
- { key: F10, chars: "\e[21~" }
|
||||
- { key: F11, chars: "\e[23~" }
|
||||
- { key: F12, chars: "\e[24~" }
|
||||
- { key: Back, chars: "" }
|
||||
- { key: Back, chars: '' }
|
||||
- { key: Back, mods: Alt, chars: "\e" }
|
||||
- { key: Insert, chars: "\e[2~" }
|
||||
- { key: Delete, chars: "\e[3~" }
|
||||
|
||||
@@ -6,7 +6,7 @@ colorize: true
|
||||
# Which 'chroma' colorscheme should be applied to the output?
|
||||
# Options are available here:
|
||||
# https://github.com/alecthomas/chroma/tree/master/styles
|
||||
style: "catppuccin"
|
||||
style: 'catppuccin'
|
||||
# Which 'chroma' "formatter" should be applied?
|
||||
# One of: "terminal", "terminal256", "terminal16m"
|
||||
formatter: terminal256
|
||||
@@ -74,7 +74,6 @@ cheatpaths:
|
||||
path: ~/.dotfiles/config/cheat/cheatsheets/tldr
|
||||
tags: [tldr]
|
||||
readonly: true
|
||||
|
||||
# While it requires no configuration here, it's also worth noting that
|
||||
# cheat will automatically append directories named '.cheat' within the
|
||||
# current working directory to the 'cheatpath'. This can be very useful if
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
prSections:
|
||||
- title: My Pull Requests
|
||||
- title: My Pull Requests
|
||||
filters: is:open author:@me
|
||||
- title: Needs My Review
|
||||
- title: Needs My Review
|
||||
filters: is:open review-requested:@me
|
||||
- title: Involved
|
||||
- title: Involved
|
||||
filters: is:open involves:@me -author:@me
|
||||
issuesSections:
|
||||
- title: My Issues
|
||||
- title: My Issues
|
||||
filters: is:open author:@me
|
||||
- title: Assigned
|
||||
- title: Assigned
|
||||
filters: is:open assignee:@me
|
||||
- title: Involved
|
||||
- title: Involved
|
||||
filters: is:open involves:@me -author:@me
|
||||
defaults:
|
||||
preview:
|
||||
@@ -51,4 +51,4 @@ keybindings:
|
||||
prs: []
|
||||
repoPaths: {}
|
||||
pager:
|
||||
diff: ""
|
||||
diff: ''
|
||||
|
||||
@@ -1,417 +1,410 @@
|
||||
{
|
||||
"Badge Text" : "",
|
||||
"Working Directory" : "\/Users\/ivuorinen\/Code",
|
||||
"Prompt Before Closing 2" : false,
|
||||
"Selected Text Color" : {
|
||||
"Red Component" : 0.80392156862745101,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.95686274509803926,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.83921568627450982
|
||||
"Badge Text": "",
|
||||
"Working Directory": "/Users/ivuorinen/Code",
|
||||
"Prompt Before Closing 2": false,
|
||||
"Selected Text Color": {
|
||||
"Red Component": 0.80392156862745101,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.95686274509803926,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.83921568627450982
|
||||
},
|
||||
"Rows" : 25,
|
||||
"Ansi 11 Color" : {
|
||||
"Red Component" : 0.97647058823529409,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.68627450980392157,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.88627450980392153
|
||||
"Rows": 25,
|
||||
"Ansi 11 Color": {
|
||||
"Red Component": 0.97647058823529409,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.68627450980392157,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.88627450980392153
|
||||
},
|
||||
"Use Italic Font" : true,
|
||||
"Foreground Color" : {
|
||||
"Red Component" : 0.80392156862745101,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.95686274509803926,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.83921568627450982
|
||||
"Use Italic Font": true,
|
||||
"Foreground Color": {
|
||||
"Red Component": 0.80392156862745101,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.95686274509803926,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.83921568627450982
|
||||
},
|
||||
"Right Option Key Sends" : 0,
|
||||
"Character Encoding" : 4,
|
||||
"Selection Color" : {
|
||||
"Red Component" : 0.34509803921568627,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.4392156862745098,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.35686274509803922
|
||||
"Right Option Key Sends": 0,
|
||||
"Character Encoding": 4,
|
||||
"Selection Color": {
|
||||
"Red Component": 0.34509803921568627,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.4392156862745098,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.35686274509803922
|
||||
},
|
||||
"Blend" : 0.24709154211956524,
|
||||
"Mouse Reporting" : true,
|
||||
"Cursor Boost" : 0,
|
||||
"Ansi 4 Color" : {
|
||||
"Red Component" : 0.53725490196078429,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.98039215686274506,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.70588235294117652
|
||||
"Blend": 0.24709154211956524,
|
||||
"Mouse Reporting": true,
|
||||
"Cursor Boost": 0,
|
||||
"Ansi 4 Color": {
|
||||
"Red Component": 0.53725490196078429,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.98039215686274506,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.70588235294117652
|
||||
},
|
||||
"Non-ASCII Anti Aliased" : true,
|
||||
"Sync Title" : false,
|
||||
"Badge Font" : "JetBrainsMonoNerdFontCompleteM-Bold",
|
||||
"Disable Window Resizing" : true,
|
||||
"Description" : "Default",
|
||||
"Close Sessions On End" : true,
|
||||
"Jobs to Ignore" : [
|
||||
"rlogin",
|
||||
"ssh",
|
||||
"slogin",
|
||||
"telnet"
|
||||
],
|
||||
"Scrollback Lines" : 0,
|
||||
"Draw Powerline Glyphs" : true,
|
||||
"Flashing Bell" : true,
|
||||
"Cursor Guide Color" : {
|
||||
"Red Component" : 0.80392156862745101,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.95686274509803926,
|
||||
"Alpha Component" : 0.070000000000000007,
|
||||
"Green Component" : 0.83921568627450982
|
||||
"Non-ASCII Anti Aliased": true,
|
||||
"Sync Title": false,
|
||||
"Badge Font": "JetBrainsMonoNerdFontCompleteM-Bold",
|
||||
"Disable Window Resizing": true,
|
||||
"Description": "Default",
|
||||
"Close Sessions On End": true,
|
||||
"Jobs to Ignore": ["rlogin", "ssh", "slogin", "telnet"],
|
||||
"Scrollback Lines": 0,
|
||||
"Draw Powerline Glyphs": true,
|
||||
"Flashing Bell": true,
|
||||
"Cursor Guide Color": {
|
||||
"Red Component": 0.80392156862745101,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.95686274509803926,
|
||||
"Alpha Component": 0.070000000000000007,
|
||||
"Green Component": 0.83921568627450982
|
||||
},
|
||||
"BM Growl" : true,
|
||||
"Ansi 3 Color" : {
|
||||
"Red Component" : 0.97647058823529409,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.68627450980392157,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.88627450980392153
|
||||
"BM Growl": true,
|
||||
"Ansi 3 Color": {
|
||||
"Red Component": 0.97647058823529409,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.68627450980392157,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.88627450980392153
|
||||
},
|
||||
"Icon" : 1,
|
||||
"Use Non-ASCII Font" : false,
|
||||
"Link Color" : {
|
||||
"Red Component" : 0.53725490196078429,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.92156862745098034,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.86274509803921573
|
||||
"Icon": 1,
|
||||
"Use Non-ASCII Font": false,
|
||||
"Link Color": {
|
||||
"Red Component": 0.53725490196078429,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.92156862745098034,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.86274509803921573
|
||||
},
|
||||
"Shortcut" : "",
|
||||
"Background Image Location" : "",
|
||||
"Bold Color" : {
|
||||
"Red Component" : 0.80392156862745101,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.95686274509803926,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.83921568627450982
|
||||
"Shortcut": "",
|
||||
"Background Image Location": "",
|
||||
"Bold Color": {
|
||||
"Red Component": 0.80392156862745101,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.95686274509803926,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.83921568627450982
|
||||
},
|
||||
"Use Cursor Guide" : false,
|
||||
"Unlimited Scrollback" : true,
|
||||
"Custom Command" : "No",
|
||||
"Title Components" : 512,
|
||||
"Keyboard Map" : {
|
||||
"0xf700-0x260000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;6A"
|
||||
"Use Cursor Guide": false,
|
||||
"Unlimited Scrollback": true,
|
||||
"Custom Command": "No",
|
||||
"Title Components": 512,
|
||||
"Keyboard Map": {
|
||||
"0xf700-0x260000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;6A"
|
||||
},
|
||||
"0x37-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1f"
|
||||
"0x37-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1f"
|
||||
},
|
||||
"0x32-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x00"
|
||||
"0x32-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x00"
|
||||
},
|
||||
"0xf709-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[17;2~"
|
||||
"0xf709-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[17;2~"
|
||||
},
|
||||
"0xf70c-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[20;2~"
|
||||
"0xf70c-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[20;2~"
|
||||
},
|
||||
"0xf729-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2H"
|
||||
"0xf729-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2H"
|
||||
},
|
||||
"0xf72b-0x40000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5F"
|
||||
"0xf72b-0x40000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5F"
|
||||
},
|
||||
"0xf705-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2Q"
|
||||
"0xf705-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2Q"
|
||||
},
|
||||
"0xf703-0x260000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;6C"
|
||||
"0xf703-0x260000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;6C"
|
||||
},
|
||||
"0xf700-0x220000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2A"
|
||||
"0xf700-0x220000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2A"
|
||||
},
|
||||
"0xf701-0x280000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1b 0x1b 0x5b 0x42"
|
||||
"0xf701-0x280000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1b 0x1b 0x5b 0x42"
|
||||
},
|
||||
"0x38-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x7f"
|
||||
"0x38-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x7f"
|
||||
},
|
||||
"0x33-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1b"
|
||||
"0x33-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1b"
|
||||
},
|
||||
"0xf703-0x220000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2C"
|
||||
"0xf703-0x220000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2C"
|
||||
},
|
||||
"0xf701-0x240000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5B"
|
||||
"0xf701-0x240000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5B"
|
||||
},
|
||||
"0xf70d-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[21;2~"
|
||||
"0xf70d-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[21;2~"
|
||||
},
|
||||
"0xf702-0x260000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;6D"
|
||||
"0xf702-0x260000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;6D"
|
||||
},
|
||||
"0xf729-0x40000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5H"
|
||||
"0xf729-0x40000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5H"
|
||||
},
|
||||
"0xf706-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2R"
|
||||
"0xf706-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2R"
|
||||
},
|
||||
"0x34-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1c"
|
||||
"0x34-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1c"
|
||||
},
|
||||
"0xf700-0x280000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1b 0x1b 0x5b 0x41"
|
||||
"0xf700-0x280000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1b 0x1b 0x5b 0x41"
|
||||
},
|
||||
"0x2d-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1f"
|
||||
"0x2d-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1f"
|
||||
},
|
||||
"0xf70e-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[23;2~"
|
||||
"0xf70e-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[23;2~"
|
||||
},
|
||||
"0xf702-0x220000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2D"
|
||||
"0xf702-0x220000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2D"
|
||||
},
|
||||
"0xf703-0x280000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1b 0x1b 0x5b 0x43"
|
||||
"0xf703-0x280000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1b 0x1b 0x5b 0x43"
|
||||
},
|
||||
"0xf700-0x240000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5A"
|
||||
"0xf700-0x240000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5A"
|
||||
},
|
||||
"0xf707-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2S"
|
||||
"0xf707-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2S"
|
||||
},
|
||||
"0xf70a-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[18;2~"
|
||||
"0xf70a-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[18;2~"
|
||||
},
|
||||
"0x35-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1d"
|
||||
"0x35-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1d"
|
||||
},
|
||||
"0xf70f-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[24;2~"
|
||||
"0xf70f-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[24;2~"
|
||||
},
|
||||
"0xf703-0x240000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5C"
|
||||
"0xf703-0x240000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5C"
|
||||
},
|
||||
"0xf701-0x260000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;6B"
|
||||
"0xf701-0x260000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;6B"
|
||||
},
|
||||
"0xf702-0x280000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1b 0x1b 0x5b 0x44"
|
||||
"0xf702-0x280000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1b 0x1b 0x5b 0x44"
|
||||
},
|
||||
"0xf72b-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2F"
|
||||
"0xf72b-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2F"
|
||||
},
|
||||
"0x36-0x40000" : {
|
||||
"Action" : 11,
|
||||
"Text" : "0x1e"
|
||||
"0x36-0x40000": {
|
||||
"Action": 11,
|
||||
"Text": "0x1e"
|
||||
},
|
||||
"0xf708-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[15;2~"
|
||||
"0xf708-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[15;2~"
|
||||
},
|
||||
"0xf701-0x220000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2B"
|
||||
"0xf701-0x220000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2B"
|
||||
},
|
||||
"0xf70b-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[19;2~"
|
||||
"0xf70b-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[19;2~"
|
||||
},
|
||||
"0xf702-0x240000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;5D"
|
||||
"0xf702-0x240000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;5D"
|
||||
},
|
||||
"0xf704-0x20000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "[1;2P"
|
||||
"0xf704-0x20000": {
|
||||
"Action": 10,
|
||||
"Text": "[1;2P"
|
||||
}
|
||||
},
|
||||
"Ansi 14 Color" : {
|
||||
"Red Component" : 0.58039215686274515,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.83529411764705885,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.88627450980392153
|
||||
"Ansi 14 Color": {
|
||||
"Red Component": 0.58039215686274515,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.83529411764705885,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.88627450980392153
|
||||
},
|
||||
"Ansi 2 Color" : {
|
||||
"Red Component" : 0.65098039215686276,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.63137254901960782,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.8901960784313725
|
||||
"Ansi 2 Color": {
|
||||
"Red Component": 0.65098039215686276,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.63137254901960782,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.8901960784313725
|
||||
},
|
||||
"Send Code When Idle" : false,
|
||||
"ASCII Anti Aliased" : true,
|
||||
"Tags" : [
|
||||
|
||||
],
|
||||
"Ansi 9 Color" : {
|
||||
"Red Component" : 0.95294117647058818,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.6588235294117647,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.54509803921568623
|
||||
"Send Code When Idle": false,
|
||||
"ASCII Anti Aliased": true,
|
||||
"Tags": [],
|
||||
"Ansi 9 Color": {
|
||||
"Red Component": 0.95294117647058818,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.6588235294117647,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.54509803921568623
|
||||
},
|
||||
"Badge Right Margin" : 10,
|
||||
"Use Bold Font" : true,
|
||||
"Silence Bell" : false,
|
||||
"Ansi 12 Color" : {
|
||||
"Red Component" : 0.53725490196078429,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.98039215686274506,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.70588235294117652
|
||||
"Badge Right Margin": 10,
|
||||
"Use Bold Font": true,
|
||||
"Silence Bell": false,
|
||||
"Ansi 12 Color": {
|
||||
"Red Component": 0.53725490196078429,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.98039215686274506,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.70588235294117652
|
||||
},
|
||||
"Window Type" : 0,
|
||||
"Use Bright Bold" : true,
|
||||
"Cursor Text Color" : {
|
||||
"Red Component" : 0.80392156862745101,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.95686274509803926,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.83921568627450982
|
||||
"Window Type": 0,
|
||||
"Use Bright Bold": true,
|
||||
"Cursor Text Color": {
|
||||
"Red Component": 0.80392156862745101,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.95686274509803926,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.83921568627450982
|
||||
},
|
||||
"Default Bookmark" : "No",
|
||||
"Cursor Color" : {
|
||||
"Red Component" : 0.96078431372549022,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.86274509803921573,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.8784313725490196
|
||||
"Default Bookmark": "No",
|
||||
"Cursor Color": {
|
||||
"Red Component": 0.96078431372549022,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.86274509803921573,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.8784313725490196
|
||||
},
|
||||
"Ansi 1 Color" : {
|
||||
"Red Component" : 0.95294117647058818,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.6588235294117647,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.54509803921568623
|
||||
"Ansi 1 Color": {
|
||||
"Red Component": 0.95294117647058818,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.6588235294117647,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.54509803921568623
|
||||
},
|
||||
"Name" : "Default",
|
||||
"Blinking Cursor" : false,
|
||||
"Guid" : "82636119-EA17-4A26-9AA7-408172F4A9C8",
|
||||
"Badge Max Width" : 0.45000000000000001,
|
||||
"Idle Code" : 0,
|
||||
"Ansi 10 Color" : {
|
||||
"Red Component" : 0.65098039215686276,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.63137254901960782,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.8901960784313725
|
||||
"Name": "Default",
|
||||
"Blinking Cursor": false,
|
||||
"Guid": "82636119-EA17-4A26-9AA7-408172F4A9C8",
|
||||
"Badge Max Width": 0.45000000000000001,
|
||||
"Idle Code": 0,
|
||||
"Ansi 10 Color": {
|
||||
"Red Component": 0.65098039215686276,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.63137254901960782,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.8901960784313725
|
||||
},
|
||||
"Ansi 8 Color" : {
|
||||
"Red Component" : 0.34509803921568627,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.4392156862745098,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.35686274509803922
|
||||
"Ansi 8 Color": {
|
||||
"Red Component": 0.34509803921568627,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.4392156862745098,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.35686274509803922
|
||||
},
|
||||
"Badge Color" : {
|
||||
"Red Component" : 1,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0,
|
||||
"Alpha Component" : 0.5,
|
||||
"Green Component" : 0.14910030364990234
|
||||
"Badge Color": {
|
||||
"Red Component": 1,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0,
|
||||
"Alpha Component": 0.5,
|
||||
"Green Component": 0.14910030364990234
|
||||
},
|
||||
"Smart Cursor Color" : true,
|
||||
"Ambiguous Double Width" : false,
|
||||
"Blur Radius" : 9.5927277260638313,
|
||||
"Badge Max Height" : 0.10000000000000001,
|
||||
"Ansi 0 Color" : {
|
||||
"Red Component" : 0.27058823529411763,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.35294117647058826,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.27843137254901962
|
||||
"Smart Cursor Color": true,
|
||||
"Ambiguous Double Width": false,
|
||||
"Blur Radius": 9.5927277260638313,
|
||||
"Badge Max Height": 0.10000000000000001,
|
||||
"Ansi 0 Color": {
|
||||
"Red Component": 0.27058823529411763,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.35294117647058826,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.27843137254901962
|
||||
},
|
||||
"Blur" : true,
|
||||
"Normal Font" : "JetBrainsMonoNerdFontCompleteM-Light 15",
|
||||
"Vertical Spacing" : 1,
|
||||
"Ansi 7 Color" : {
|
||||
"Red Component" : 0.72941176470588232,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.87058823529411766,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.76078431372549016
|
||||
"Blur": true,
|
||||
"Normal Font": "JetBrainsMonoNerdFontCompleteM-Light 15",
|
||||
"Vertical Spacing": 1,
|
||||
"Ansi 7 Color": {
|
||||
"Red Component": 0.72941176470588232,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.87058823529411766,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.76078431372549016
|
||||
},
|
||||
"Command" : "",
|
||||
"Terminal Type" : "xterm-256color",
|
||||
"Horizontal Spacing" : 1,
|
||||
"Option Key Sends" : 0,
|
||||
"Only The Default BG Color Uses Transparency" : true,
|
||||
"Minimum Contrast" : 0.14973958333333334,
|
||||
"Ansi 15 Color" : {
|
||||
"Red Component" : 0.65098039215686276,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.78431372549019607,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.67843137254901964
|
||||
"Command": "",
|
||||
"Terminal Type": "xterm-256color",
|
||||
"Horizontal Spacing": 1,
|
||||
"Option Key Sends": 0,
|
||||
"Only The Default BG Color Uses Transparency": true,
|
||||
"Minimum Contrast": 0.14973958333333334,
|
||||
"Ansi 15 Color": {
|
||||
"Red Component": 0.65098039215686276,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.78431372549019607,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.67843137254901964
|
||||
},
|
||||
"Ansi 6 Color" : {
|
||||
"Red Component" : 0.58039215686274515,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.83529411764705885,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.88627450980392153
|
||||
"Ansi 6 Color": {
|
||||
"Red Component": 0.58039215686274515,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.83529411764705885,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.88627450980392153
|
||||
},
|
||||
"Badge Top Margin" : 10,
|
||||
"Transparency" : 0.10293218085106381,
|
||||
"Background Color" : {
|
||||
"Red Component" : 0.11764705882352941,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.1803921568627451,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.11764705882352941
|
||||
"Badge Top Margin": 10,
|
||||
"Transparency": 0.10293218085106381,
|
||||
"Background Color": {
|
||||
"Red Component": 0.11764705882352941,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.1803921568627451,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.11764705882352941
|
||||
},
|
||||
"Screen" : -2,
|
||||
"Non Ascii Font" : "Monaco 12",
|
||||
"Ansi 13 Color" : {
|
||||
"Red Component" : 0.96078431372549022,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.90588235294117647,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.76078431372549016
|
||||
"Screen": -2,
|
||||
"Non Ascii Font": "Monaco 12",
|
||||
"Ansi 13 Color": {
|
||||
"Red Component": 0.96078431372549022,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.90588235294117647,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.76078431372549016
|
||||
},
|
||||
"Columns" : 120,
|
||||
"Visual Bell" : true,
|
||||
"ASCII Ligatures" : false,
|
||||
"Ansi 5 Color" : {
|
||||
"Red Component" : 0.96078431372549022,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.90588235294117647,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.76078431372549016
|
||||
"Columns": 120,
|
||||
"Visual Bell": true,
|
||||
"ASCII Ligatures": false,
|
||||
"Ansi 5 Color": {
|
||||
"Red Component": 0.96078431372549022,
|
||||
"Color Space": "sRGB",
|
||||
"Blue Component": 0.90588235294117647,
|
||||
"Alpha Component": 1,
|
||||
"Green Component": 0.76078431372549016
|
||||
},
|
||||
"Custom Directory" : "Yes"
|
||||
"Custom Directory": "Yes"
|
||||
}
|
||||
@@ -20,62 +20,62 @@ wtf:
|
||||
# that support ten line of text and one of four.
|
||||
rows: [10, 10, 10, 20, 10, 4]
|
||||
refreshInterval: 1
|
||||
openFileUtil: "open"
|
||||
openFileUtil: 'open'
|
||||
mods:
|
||||
# You can have multiple widgets of the same type.
|
||||
# The "key" is the name of the widget and the type is the actual
|
||||
# widget you want to implement.
|
||||
europe_time:
|
||||
title: "Europe"
|
||||
title: 'Europe'
|
||||
type: clocks
|
||||
colors:
|
||||
rows:
|
||||
even: "lightblue"
|
||||
odd: "white"
|
||||
even: 'lightblue'
|
||||
odd: 'white'
|
||||
enabled: true
|
||||
locations:
|
||||
GMT: "Etc/GMT"
|
||||
Amsterdam: "Europe/Amsterdam"
|
||||
Berlin: "Europe/Berlin"
|
||||
Barcelona: "Europe/Madrid"
|
||||
Copenhagen: "Europe/Copenhagen"
|
||||
London: "Europe/London"
|
||||
Rome: "Europe/Rome"
|
||||
Stockholm: "Europe/Stockholm"
|
||||
GMT: 'Etc/GMT'
|
||||
Amsterdam: 'Europe/Amsterdam'
|
||||
Berlin: 'Europe/Berlin'
|
||||
Barcelona: 'Europe/Madrid'
|
||||
Copenhagen: 'Europe/Copenhagen'
|
||||
London: 'Europe/London'
|
||||
Rome: 'Europe/Rome'
|
||||
Stockholm: 'Europe/Stockholm'
|
||||
position:
|
||||
top: 0
|
||||
left: 0
|
||||
height: 1
|
||||
width: 1
|
||||
refreshInterval: 15
|
||||
sort: "alphabetical"
|
||||
sort: 'alphabetical'
|
||||
americas_time:
|
||||
title: "Americas"
|
||||
title: 'Americas'
|
||||
type: clocks
|
||||
colors:
|
||||
rows:
|
||||
even: "lightblue"
|
||||
odd: "white"
|
||||
even: 'lightblue'
|
||||
odd: 'white'
|
||||
enabled: true
|
||||
locations:
|
||||
UTC: "Etc/UTC"
|
||||
Vancouver: "America/Vancouver"
|
||||
New_York: "America/New_York"
|
||||
Sao_Paulo: "America/Sao_Paulo"
|
||||
Denver: "America/Denver"
|
||||
Iqaluit: "America/Iqaluit"
|
||||
Bahamas: "America/Nassau"
|
||||
Chicago: "America/Chicago"
|
||||
UTC: 'Etc/UTC'
|
||||
Vancouver: 'America/Vancouver'
|
||||
New_York: 'America/New_York'
|
||||
Sao_Paulo: 'America/Sao_Paulo'
|
||||
Denver: 'America/Denver'
|
||||
Iqaluit: 'America/Iqaluit'
|
||||
Bahamas: 'America/Nassau'
|
||||
Chicago: 'America/Chicago'
|
||||
position:
|
||||
top: 0
|
||||
left: 1
|
||||
height: 1
|
||||
width: 1
|
||||
refreshInterval: 15
|
||||
sort: "alphabetical"
|
||||
sort: 'alphabetical'
|
||||
battery:
|
||||
type: power
|
||||
title: "⚡️"
|
||||
title: '⚡️'
|
||||
enabled: true
|
||||
position:
|
||||
top: 1
|
||||
@@ -85,14 +85,14 @@ wtf:
|
||||
refreshInterval: 15
|
||||
todolist:
|
||||
type: todo
|
||||
checkedIcon: "X"
|
||||
checkedIcon: 'X'
|
||||
colors:
|
||||
checked: gray
|
||||
highlight:
|
||||
fore: "black"
|
||||
back: "orange"
|
||||
fore: 'black'
|
||||
back: 'orange'
|
||||
enabled: true
|
||||
filename: "todo.yml"
|
||||
filename: 'todo.yml'
|
||||
position:
|
||||
top: 1
|
||||
left: 0
|
||||
@@ -101,10 +101,10 @@ wtf:
|
||||
refreshInterval: 3600
|
||||
ip:
|
||||
type: ipinfo
|
||||
title: "My IP"
|
||||
title: 'My IP'
|
||||
colors:
|
||||
name: "lightblue"
|
||||
value: "white"
|
||||
name: 'lightblue'
|
||||
value: 'white'
|
||||
enabled: true
|
||||
position:
|
||||
top: 0
|
||||
@@ -114,7 +114,7 @@ wtf:
|
||||
refreshInterval: 150
|
||||
security_info:
|
||||
type: security
|
||||
title: "Staying safe"
|
||||
title: 'Staying safe'
|
||||
enabled: true
|
||||
position:
|
||||
top: 1
|
||||
@@ -126,9 +126,9 @@ wtf:
|
||||
type: textfile
|
||||
enabled: true
|
||||
filePaths:
|
||||
- "~/.config/wtf/config.yml"
|
||||
- '~/.config/wtf/config.yml'
|
||||
format: true
|
||||
formatStyle: "monokai"
|
||||
formatStyle: 'monokai'
|
||||
position:
|
||||
top: 3
|
||||
left: 0
|
||||
@@ -137,7 +137,7 @@ wtf:
|
||||
refreshInterval: 15
|
||||
news:
|
||||
type: hackernews
|
||||
title: "HackerNews"
|
||||
title: 'HackerNews'
|
||||
enabled: true
|
||||
numberOfStories: 10
|
||||
position:
|
||||
@@ -159,7 +159,7 @@ wtf:
|
||||
uptime:
|
||||
type: cmdrunner
|
||||
args: []
|
||||
cmd: "uptime"
|
||||
cmd: 'uptime'
|
||||
enabled: true
|
||||
position:
|
||||
top: 5
|
||||
@@ -169,8 +169,8 @@ wtf:
|
||||
refreshInterval: 30
|
||||
disks:
|
||||
type: cmdrunner
|
||||
cmd: "df"
|
||||
args: ["-h"]
|
||||
cmd: 'df'
|
||||
args: ['-h']
|
||||
enabled: true
|
||||
position:
|
||||
top: 4
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# nvim keybindings
|
||||
|
||||
```md
|
||||
```
|
||||
n ! * <Cmd>lua require("which-key").show("!", {mode = "n", auto = true})<CR>
|
||||
n ' * <Cmd>lua require("which-key").show("'", {mode = "n", auto = true})<CR>
|
||||
n " * <Cmd>lua require("which-key").show("\"", {mode = "n", auto = true})<CR>
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
# tmux keybindings
|
||||
|
||||
|
||||
Leader: `<ctrl><space>`
|
||||
|
||||
|
||||
```
|
||||
bind-key -T copy-mode C-Space send-keys -X begin-selection
|
||||
bind-key -T copy-mode C-a send-keys -X start-of-line
|
||||
@@ -298,4 +296,3 @@ bind-key -T root M-Right select-pane -R
|
||||
bind-key -T root C-Tab previous-window
|
||||
bind-key -T root C-S-Tab next-window
|
||||
```
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
- include: "tools/dotbot-defaults.yaml"
|
||||
- include: 'tools/dotbot-defaults.yaml'
|
||||
- shell:
|
||||
- echo "Configuring air"
|
||||
- brewfile:
|
||||
@@ -8,7 +8,7 @@
|
||||
force: true
|
||||
glob: true
|
||||
path: hosts/air/base/**
|
||||
prefix: "."
|
||||
prefix: '.'
|
||||
~/.config/:
|
||||
glob: true
|
||||
force: true
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
- include: "tools/dotbot-defaults.yaml"
|
||||
- include: 'tools/dotbot-defaults.yaml'
|
||||
- shell:
|
||||
- echo "Configuring lakka"
|
||||
- link:
|
||||
@@ -6,7 +6,7 @@
|
||||
force: true
|
||||
glob: true
|
||||
path: hosts/lakka/base/**
|
||||
prefix: "."
|
||||
prefix: '.'
|
||||
~/.config/:
|
||||
glob: true
|
||||
force: true
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
- include: "tools/dotbot-defaults.yaml"
|
||||
- include: 'tools/dotbot-defaults.yaml'
|
||||
- shell:
|
||||
- echo "Configuring tunkki"
|
||||
- link:
|
||||
@@ -6,8 +6,11 @@
|
||||
force: true
|
||||
glob: true
|
||||
path: hosts/tunkki/base/**
|
||||
prefix: "."
|
||||
prefix: '.'
|
||||
~/.config/:
|
||||
glob: true
|
||||
force: true
|
||||
path: hosts/tunkki/config/**
|
||||
- snap:
|
||||
- nvim:
|
||||
classic: true
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
- include: "tools/dotbot-defaults.yaml"
|
||||
- include: 'tools/dotbot-defaults.yaml'
|
||||
- shell:
|
||||
- echo "Configuring v"
|
||||
- link:
|
||||
@@ -6,7 +6,7 @@
|
||||
force: true
|
||||
glob: true
|
||||
path: hosts/v/base/**
|
||||
prefix: "."
|
||||
prefix: '.'
|
||||
~/.config/:
|
||||
glob: true
|
||||
force: true
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
- include: "tools/dotbot-defaults.yaml"
|
||||
- include: 'tools/dotbot-defaults.yaml'
|
||||
- clean:
|
||||
~/:
|
||||
~/.config:
|
||||
@@ -26,7 +26,7 @@
|
||||
force: true
|
||||
glob: true
|
||||
path: base/*
|
||||
prefix: "."
|
||||
prefix: '.'
|
||||
~/.config/:
|
||||
glob: true
|
||||
relink: true
|
||||
@@ -65,6 +65,3 @@
|
||||
platform: linux # Optional
|
||||
- time: 0 5 * * *
|
||||
command: task sync
|
||||
- snap:
|
||||
- nvim:
|
||||
classic: true
|
||||
|
||||
@@ -13,7 +13,7 @@ Some problematic code has been fixed per `shellcheck` suggestions.
|
||||
## Sourced
|
||||
|
||||
| Script | Source |
|
||||
|-------------------------|-------------------|
|
||||
| ----------------------- | ----------------- |
|
||||
| `x-dupes` | skx/sysadmin-util |
|
||||
| `x-foreach` | mvdan/dotfiles |
|
||||
| `x-multi-ping` | skx/sysadmin-util |
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
# Updates $HOME/.dotfiles/docs/tmux.md with my keybindings.
|
||||
|
||||
# shellcheck source=./../../scripts/shared.sh
|
||||
DOTFILES_SHARED_LOADED=""
|
||||
source "$HOME/.dotfiles/scripts/shared.sh"
|
||||
|
||||
have tmux || {
|
||||
@@ -15,7 +16,7 @@ TMUX_KEYBINDINGS_DOCS="$DOTFILES/docs/tmux-keybindings.md"
|
||||
CB="\n\`\`\`\n"
|
||||
KB=$(tmux list-keys)
|
||||
H="# tmux keybindings\n"
|
||||
L="\n\nLeader: \`<ctrl><space>\`\n\n"
|
||||
L="\nLeader: \`<ctrl><space>\`\n"
|
||||
|
||||
# Generalize expanded $HOME to "$HOME"
|
||||
KB="${KB//$HOME/\$HOME}"
|
||||
|
||||
36
package.json
Normal file
36
package.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "ivuorinen-dotfiles",
|
||||
"version": "1.0.0",
|
||||
"description": "ivuorinen's dotfiles, this is for linting and formatters",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"doc": "docs"
|
||||
},
|
||||
"scripts": {
|
||||
"lint:markdown": "npx markdownlint -d .",
|
||||
"fix:markdown": "npx markdownlint -df .",
|
||||
"lint:prettier": "npx prettier . --check",
|
||||
"fix:prettier": "npx prettier . --write",
|
||||
"test": "echo \"Error: no test specified\" && exit 0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ivuorinen/dotfiles.git"
|
||||
},
|
||||
"keywords": [
|
||||
"dotfiles",
|
||||
"ivuorinen"
|
||||
],
|
||||
"author": "Ismo Vuorinen",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ivuorinen/dotfiles/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ivuorinen/dotfiles#readme",
|
||||
"devDependencies": {
|
||||
"@ivuorinen/commitlint-config": "^0.1.10",
|
||||
"@ivuorinen/eslint-config": "^0.2.13",
|
||||
"@ivuorinen/markdownlint-config": "^0.1.6",
|
||||
"@ivuorinen/prettier-config": "^0.1.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user