From fd220c9196d2c2201f834480b630af018521c7a9 Mon Sep 17 00:00:00 2001 From: Tovi Jaeschke-Rogers Date: Mon, 24 Mar 2025 11:25:12 +1030 Subject: [PATCH] feat: copy screenshots to clipboard --- .config/nvim/lua/plugins/linting.lua | 1 + .local/bin/screencapture | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/linting.lua b/.config/nvim/lua/plugins/linting.lua index 3eeb616..7ad62e4 100644 --- a/.config/nvim/lua/plugins/linting.lua +++ b/.config/nvim/lua/plugins/linting.lua @@ -95,6 +95,7 @@ return { python = { "pylint" }, dockerfile = { "hadolint" }, blade = { "phpcs" }, + html = { "curlylint" }, } local lint_augroup = vim.api.nvim_create_augroup("lint", { diff --git a/.local/bin/screencapture b/.local/bin/screencapture index 1a3aa83..e2b69b8 100755 --- a/.local/bin/screencapture +++ b/.local/bin/screencapture @@ -1,3 +1,5 @@ #!/bin/sh -scrot -s "$HOME/Pictures/screenshots/%b%d::%H%M%S.png" +FILENAME="$HOME/Pictures/screenshots/$(date +'%b%d::%H%M%S').png" + +scrot -s "$FILENAME" && xclip -selection clipboard -target image/png -i < "$FILENAME"