move bin to .local
This commit is contained in:
parent
580db66f32
commit
174f55cd1b
2 changed files with 0 additions and 0 deletions
13
.local/bin/fuzzy-i3lock
Executable file
13
.local/bin/fuzzy-i3lock
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/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 "$screenshot"
|
||||
mogrify -scale 10% -scale 1000% "$screenshot"
|
||||
exec i3lock -i "$screenshot"
|
9
.local/bin/i3-run
Executable file
9
.local/bin/i3-run
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/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)' && $@"
|
Loading…
Add table
Add a link
Reference in a new issue