Delete duplicate files which are also in the i3 repo

This commit is contained in:
finga 2023-04-19 16:14:53 +02:00
parent 11f7359e1b
commit 0c8ae30fa6
3 changed files with 1 additions and 28 deletions

View file

@ -1,11 +1,6 @@
* *
!/.gitignore.d
!/.gitignore.d/bin !/.gitignore.d/bin
!/.local
!/.local/bin
!/.local/bin/birthdays !/.local/bin/birthdays
!/.local/bin/borg_backup !/.local/bin/borg_backup
!/.local/bin/fuzzy-i3lock
!/.local/bin/i3-run
!/.local/bin/ical2org !/.local/bin/ical2org
!/.local/bin/watch !/.local/bin/watch-series

View file

@ -1,13 +0,0 @@
#!/bin/sh -e
#
# Show a pixelated screenshot as background image of i3lock
#
# See <https://faq.i3wm.org/question/83/how-to-run-i3lock-after-computer-inactivity/>
# Copied from <https://r0tty.org/git/dotfiles/i3/tree/bin/fuzzy-i3lock>
#
screenshot="${TMPDIR:-/tmp}/fuzzy-i3lock.png"
scrot -o "$screenshot"
mogrify -scale 10% -scale 1000% "$screenshot"
exec i3lock -i "$screenshot"

View file

@ -1,9 +0,0 @@
#!/bin/sh
# stolen from https://r0tty.org/git/dotfiles/i3
# Make i3 spawn a program, in the current working directory. This is
# useful for running GUI apps from a terminal without cluttering the
# terminal with their output.
exec i3-msg -t command exec "cd '$(pwd)' && $@"