mirror of
https://github.com/adi1090x/rofi.git
synced 2026-05-03 20:13:10 +02:00
Compare commits
1 Commits
fa45a99510
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| b0bfe92753 |
@@ -109,7 +109,7 @@ $ ./setup.sh
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<!-- sponsors --><a href="https://github.com/davidtoska"><img src="https://github.com/davidtoska.png" width="60px" alt="User avatar: David Toska" /></a><a href="https://github.com/dgxlab"><img src="https://github.com/dgxlab.png" width="60px" alt="User avatar: David Vargas" /></a><!-- sponsors -->
|
<!-- sponsors --><a href="https://github.com/davidtoska"><img src="https://github.com/davidtoska.png" width="60px" alt="User avatar: David Toska" /></a><a href="https://github.com/dgxlab"><img src="https://github.com/dgxlab.png" width="60px" alt="User avatar: David Vargas" /></a><a href="https://github.com/maksimdymov"><img src="https://github.com/maksimdymov.png" width="60px" alt="User avatar: Maksim" /></a><!-- sponsors -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -95,9 +95,9 @@ case ${chosen} in
|
|||||||
run_cmd --reboot
|
run_cmd --reboot
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -96,9 +96,9 @@ case ${chosen} in
|
|||||||
run_cmd --reboot
|
run_cmd --reboot
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -90,9 +90,9 @@ case ${chosen} in
|
|||||||
run_cmd --reboot
|
run_cmd --reboot
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -90,9 +90,9 @@ case ${chosen} in
|
|||||||
run_cmd --reboot
|
run_cmd --reboot
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -102,9 +102,9 @@ case ${chosen} in
|
|||||||
run_cmd --hibernate
|
run_cmd --hibernate
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -102,9 +102,9 @@ case ${chosen} in
|
|||||||
run_cmd --hibernate
|
run_cmd --hibernate
|
||||||
;;
|
;;
|
||||||
$lock)
|
$lock)
|
||||||
if command -v betterlockscreen >/dev/null 2>&1; then
|
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
elif command -v i3lock >/dev/null 2>&1; then
|
elif [[ -x '/usr/bin/i3lock' ]]; then
|
||||||
i3lock
|
i3lock
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user