The very personal dotfiles of Levi Olson.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
##########################################
|
|
# lockscreen
|
|
# ------------
|
|
#
|
|
# Dependencies: docker, i3lock, scrot
|
|
#
|
|
# Loosly based on the amazing work of Jess Frazelle
|
|
#
|
|
# :author: Levi Olson
|
|
# :date: 31 Jan 2018
|
|
# :version: 0.0.1
|
|
##########################################
|
|
set -e
|
|
|
|
# subshell
|
|
(
|
|
i3lock -c 000000
|
|
)
|