feat: package as sshfsc for Moonarch repo
Update PKGBUILD version / update-pkgver (push) Has been cancelled

- Add MIT LICENSE
- Rename Go module sshfs_connect -> sshfsc
- Update README with Moonarch install instructions
- Add Gitea workflow to auto-bump pkgver in moonarch-pkgbuilds
This commit is contained in:
2026-04-19 14:29:57 +02:00
parent 40961b10c0
commit eb93777faa
4 changed files with 87 additions and 6 deletions
+22 -5
View File
@@ -1,16 +1,33 @@
Quickly mount remote systems via SSHFS based on your ssh_config
Quickly mount remote systems via SSHFS based on your ssh_config
Static mount dir is currently `~/Servers/<Host>`
# Install
## Arch Linux (Moonarch repo)
Available in the Moonarch package repository as `sshfsc-git`:
```
paru -S sshfsc-git
```
## From source
```
go build -o sshfsc
install -Dm755 sshfsc /usr/local/bin/sshfsc
```
# Dependencies
- [SSHFS](https://wiki.archlinux.org/title/SSHFS)
- [Go](https://wiki.archlinux.org/title/Go)
- [Go](https://wiki.archlinux.org/title/Go) (build-time)
# Usage
```
sshfs_connect <Host>
sshfsc <Host>
```
## Arguments
@@ -19,7 +36,7 @@ sshfs_connect <Host>
| ------------- | ------------- |
| -e | open mountpoint in your editor |
Editor Sublime-Text (subl) is currently hardcoded. [See](https://gitea.moonarch.de/nevaforget/sshfs_connect/issues/1)
Editor Sublime-Text (subl) is currently hardcoded. [See](https://gitea.moonarch.de/nevaforget/sshfs_connect/issues/1)
# Example ssh config
@@ -30,4 +47,4 @@ Host myserver
HostName 127.0.0.1
User sshusername
IdentityFile ~/.ssh/id_rsa
```
```