I hereby claim:
- I am 15cm on github.
- I am sinkerine (https://keybase.io/sinkerine) on keybase.
- I have a public key ASBA8k82BEoiTK1PDZlObIV4KsR9qbUUtXJJxIsjS2WNPwo
To claim this, I am signing this object:
diff --git a/adaptor/src/ueberzug.rs b/adaptor/src/ueberzug.rs | |
index 27d891b..24f5e31 100644 | |
--- a/adaptor/src/ueberzug.rs | |
+++ b/adaptor/src/ueberzug.rs | |
@@ -47,10 +47,10 @@ impl Ueberzug { | |
if let Some((path, rect)) = cmd { | |
let s = format!( | |
r#"{{"action":"add","identifier":"yazi","x":{},"y":{},"max_width":{},"max_height":{},"path":"{}"}}{}"#, | |
- rect.x, | |
- rect.y, |
{ | |
"schema_version": 1, | |
"name": "Bangumi Subscription", | |
"description": "No description provided", | |
"source_url": false, | |
"guid": "6ac1d031153228f8a40df16e765e87ec", | |
"tag_fg_color": "#ffffff", | |
"tag_bg_color": "#f2a1b6", | |
"icon": "film", | |
"exported_at": "2021-01-17T03:44:39Z", |
(defun my-linum-mode-hook (&rest r) | |
;; linum-relative-format should be first set as a custom variable | |
(setq linum-relative-format (if (display-graphic-p) "%4s" "%4s "))) | |
(my-linum-mode-hook) | |
;; fix reset problem of linum-relative-format | |
(advice-add 'spacemacs/cycle-spacemacs-theme :after #'my-linum-mode-hook) |
# compinit optimization for oh-my-zsh | |
# On slow systems, checking the cached .zcompdump file to see if it must be | |
# regenerated adds a noticable delay to zsh startup. This little hack restricts | |
# it to once a day. It should be pasted into your own completion file. | |
# | |
# The globbing is a little complicated here: | |
# - '#q' is an explicit glob qualifier that makes globbing work within zsh's [[ ]] construct. | |
# - 'N' makes the glob pattern evaluate to nothing when it doesn't match (rather than throw a globbing error) | |
# - '.' matches "regular files" | |
# - 'mh+24' matches files (or directories or whatever) that are older than 24 hours. |
#!/bin/bash | |
# https://github.com/RMerl/asuswrt-merlin/wiki/Custom-DDNS | |
# CHANGE THESE | |
auth_email="[email protected]" | |
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
zone_name="example.com" | |
record_names="*.a.example.com" | |
record_names="$record_names a.example.com" |
#!/usr/bin/env python3 | |
# Redirect output to *.json and upload it as a "Scenario JSON File" in huginn | |
# You need to add sources in agent "Send url of data to Aria2 on VPS" manually | |
from datetime import datetime | |
import uuid | |
import json | |
# Set Aria2 Config here for Aria2 RPC |
I hereby claim:
To claim this, I am signing this object:
// page browsing | |
unmap('E'); mapkey('H', 'Go one tab left', 'RUNTIME("previousTab")'); | |
unmap('R'); mapkey('L', 'Go one tab right', 'RUNTIME("nextTab")'); | |
unmap('S'); mapkey('J', 'Go back in history', 'history.go(-1)'); | |
unmap('D'); mapkey('K', 'Go forward in history', 'history.go(1)'); | |
unmap('u'); mapkey('u', 'Scroll a page up', 'Normal.scroll("pageUp")'); | |
unmap('r'); mapkey('R', 'Reload the page', 'RUNTIME("reloadTab", { nocache: false })'); |