update
- `chbg`: avoid null argument - `fake-nautilus` overrides.
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.tar.zst
|
||||
fake-nautilus/**/
|
||||
2
bin/chbg
2
bin/chbg
@@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
# to change wallpapers both niri workspace and niri tab view
|
||||
[ -z "$1" ] && { echo "Usage: $0 <image-file>"; exit 1; }
|
||||
|
||||
WP_DIR="$HOME/.local/share"
|
||||
|
||||
echo -n "making blurred version... "
|
||||
|
||||
28
fake-nautilus/PKGBUILD
Normal file
28
fake-nautilus/PKGBUILD
Normal file
@@ -0,0 +1,28 @@
|
||||
# thx Vescrity.
|
||||
pkgname=fake-nautilus
|
||||
pkgver=0.2
|
||||
pkgrel=1
|
||||
pkgdesc="no nautilus"
|
||||
arch=('any')
|
||||
depends=()
|
||||
optdepends=()
|
||||
makedepends=()
|
||||
conflicts=('nautilus')
|
||||
provides=('nautilus')
|
||||
source=()
|
||||
sha256sums=()
|
||||
prepare() {
|
||||
true
|
||||
}
|
||||
|
||||
build() {
|
||||
true
|
||||
}
|
||||
|
||||
package() {
|
||||
echo ${srcdir}
|
||||
install -d "${pkgdir}/usr/bin"
|
||||
cd "${pkgdir}/usr/bin"
|
||||
echo -e "#!/bin/bash\nnotify-send 'Doki Doki Forever!'" > nautilus
|
||||
chmod +x nautilus
|
||||
}
|
||||
5
fake-nautilus/readme.md
Normal file
5
fake-nautilus/readme.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# fake-nautilus
|
||||
|
||||
to replace `nautilus` which is needed by gnome portal.
|
||||
|
||||
~~so why? \`cause it's too ugly.~~
|
||||
Reference in New Issue
Block a user