mirror of
https://github.com/alrayyes/dwm.git
synced 2024-11-22 03:26:23 +00:00
added support for i3lock-fancy-multimonitor
This commit is contained in:
parent
f87cdd1bbc
commit
c4c393bf98
2 changed files with 11 additions and 3 deletions
5
PKGBUILD
5
PKGBUILD
|
@ -9,7 +9,8 @@ url="http://dwm.suckless.org"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
options=(zipman)
|
options=(zipman)
|
||||||
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu' 'nerd-fonts-source-code-pro' 'i3lock' 'xautolock' 'xss-lock' 'xbindkeys' 'compton' 'feh' 'unclutter' 'redshift' 'dunst' 'slstatus-git' 'spotify' 'iceweasel' 'tmux' 'scrot' 'pulseaudio' 'xorg-xbacklight' 'yubikey-oath-dmenu' 'pass' 'menu-calc' 'xdotool')
|
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu' 'nerd-fonts-source-code-pro' 'xautolock' 'xss-lock' 'xbindkeys' 'compton' 'feh' 'unclutter' 'redshift' 'dunst' 'slstatus-git' 'spotify' 'iceweasel' 'tmux' 'scrot' 'pulseaudio' 'xorg-xbacklight' 'yubikey-oath-dmenu' 'pass' 'menu-calc' 'xdotool')
|
||||||
|
optdepends=('i3lock' 'i3lock-fancy-multimonitor-git')
|
||||||
install=dwm.install
|
install=dwm.install
|
||||||
|
|
||||||
_patches=(
|
_patches=(
|
||||||
|
@ -37,7 +38,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
|
||||||
md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
|
md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
|
||||||
'a653a6835f12bf99a2ec36f3e261c8be'
|
'a653a6835f12bf99a2ec36f3e261c8be'
|
||||||
'939f403a71b6e85261d09fc3412269ee'
|
'939f403a71b6e85261d09fc3412269ee'
|
||||||
'8444c7d7bfca2b3ec5b5f686d7661867'
|
'8b2b6c96dbb9e8968a4c52aca2985ee4'
|
||||||
'31a7569d7f3d43846f59e854ec5d1da0'
|
'31a7569d7f3d43846f59e854ec5d1da0'
|
||||||
'fbb786263f2d714b18368ff64779d669'
|
'fbb786263f2d714b18368ff64779d669'
|
||||||
'c75af619c04cfae7b9740ec140d1dc6c'
|
'c75af619c04cfae7b9740ec140d1dc6c'
|
||||||
|
|
9
lock
9
lock
|
@ -1,3 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
i3lock -e -b -f -i ~/.cache/lock.png
|
if [ -e /usr/bin/i3lock-fancy ]
|
||||||
|
then
|
||||||
|
i3lock-fancy -p -n
|
||||||
|
elif [ -e /usr/bin/i3lock ]
|
||||||
|
then
|
||||||
|
i3lock -e -b -f -i ~/.cache/lock.png
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue