Browse Source

feat: copy screenshots to clipboard

master
Tovi Jaeschke-Rogers 2 weeks ago
parent
commit
fd220c9196
2 changed files with 4 additions and 1 deletions
  1. +1
    -0
      .config/nvim/lua/plugins/linting.lua
  2. +3
    -1
      .local/bin/screencapture

+ 1
- 0
.config/nvim/lua/plugins/linting.lua View File

@ -95,6 +95,7 @@ return {
python = { "pylint" },
dockerfile = { "hadolint" },
blade = { "phpcs" },
html = { "curlylint" },
}
local lint_augroup = vim.api.nvim_create_augroup("lint", {


+ 3
- 1
.local/bin/screencapture View File

@ -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"

Loading…
Cancel
Save