Search Criteria
Package Details: i3-battery-popup 1.0.0-1
Git Clone URL: | https://aur.archlinux.org/i3-battery-popup.git (read-only, click to copy) |
---|---|
Package Base: | i3-battery-popup |
Description: | A script that shows messages to the user when the battery is almost empty. |
Upstream URL: | https://github.com/rjekker/i3-battery-popup |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | ljmf00 |
Maintainer: | ljmf00 |
Last Packager: | ljmf00 |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2020-09-19 21:55 |
Last Updated: | 2020-09-19 21:55 |
Dependencies (2)
- bash (bash-devel-git, bash-devel-static-git)
- tk (tk85) (optional) – for tk dialogs support
Latest Comments
caltlgin commented on 2020-09-20 02:16
Small tip:
install -d "$pkgdir/usr/bin"
is not required as the directory will be created withinstall -Dm 755 i3-battery-popup "$pkgdir/usr/bin/i3-battery-popup"
which can be further shortened toinstall -Dm755 -t "${pkgdir}/usr/bin" "${pkgname}"
Also it is generally not required to list bash as an dependency