Updated README

This commit is contained in:
Caleb Gardner
2020-11-09 15:30:14 -06:00
parent b20de4f1d6
commit 7e2d7ee14b
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -20,7 +20,7 @@ Because apps aren't natively formated in the PortableApps.com format, LinuxPA wi
# AppImage Support # AppImage Support
[AppImage Website](http://appimage.org) [AppImage Website](http://appimage.org)
Right now AppImages are simply supported via the native linux executable support, and you can download AppImages. (Woo) I'm looking into improving AppImage support. As of 2.1.5.0 IF `unsquashfs` is in $PATH then some advanced AppImage support is available and it will automagically get the name and possibly the icon of it. I'm looking into better support, but it might be a while.
# USB mount # USB mount
Unfortunately Linux, by default, doesn't support running executables off of FAT formated flash drives, requiring you to mount your drive with special mount arguments or format in a linux friendly format (such as EXT4). I personally use the arguments `exec,noauto,nodev,nosuid,umask=0000` Unfortunately Linux, by default, doesn't support running executables off of FAT formated flash drives, requiring you to mount your drive with special mount arguments or format in a linux friendly format (such as EXT4). I personally use the arguments `exec,noauto,nodev,nosuid,umask=0000`
@@ -30,6 +30,7 @@ Photos are found [Here](https://goo.gl/photos/VtBUL6DyZTMidj5n6). The screenshot
# TODO (Might be in order) # TODO (Might be in order)
1. MAKE IT BETTER   1. MAKE IT BETTER  
1. Try to `chmod +x` executables if they don't have the permission
1. Manual update check   1. Manual update check  
1. Better AppImage integrations (Specifically updating, getting information from the appimage, and better appimage downloading) 1. Better AppImage integrations (Specifically updating, getting information from the appimage, and better appimage downloading)
1. Automagic appimage updating (It will of course ask you beforehand) 1. Automagic appimage updating (It will of course ask you beforehand)
+1 -1
View File
@@ -3,7 +3,7 @@ module github.com/CalebQ42/LinuxPA
go 1.15 go 1.15
require ( require (
github.com/CalebQ42/GoAppImage v0.2.0 github.com/CalebQ42/GoAppImage v0.4.0
github.com/gotk3/gotk3 v0.5.0 github.com/gotk3/gotk3 v0.5.0
github.com/mholt/archiver/v3 v3.5.0 github.com/mholt/archiver/v3 v3.5.0
) )
+1
View File
@@ -1,4 +1,5 @@
github.com/CalebQ42/GoAppImage v0.2.0/go.mod h1:3SZVVeXeNJx1UobO0Cb4cBnx02ahyx52wBzo1VEPNOA= github.com/CalebQ42/GoAppImage v0.2.0/go.mod h1:3SZVVeXeNJx1UobO0Cb4cBnx02ahyx52wBzo1VEPNOA=
github.com/CalebQ42/GoAppImage v0.4.0/go.mod h1:qHudJKAn/dlkNWNnH4h1YKXp29EZ7Bppsn7sNP2HuvU=
github.com/adrg/xdg v0.2.2 h1:A7ZHKRz5KGOLJX/bg7IPzStryhvCzAE1wX+KWawPiAo= github.com/adrg/xdg v0.2.2 h1:A7ZHKRz5KGOLJX/bg7IPzStryhvCzAE1wX+KWawPiAo=
github.com/adrg/xdg v0.2.2/go.mod h1:7I2hH/IT30IsupOpKZ5ue7/qNi3CoKzD6tL3HwpaRMQ= github.com/adrg/xdg v0.2.2/go.mod h1:7I2hH/IT30IsupOpKZ5ue7/qNi3CoKzD6tL3HwpaRMQ=
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs=