From e78d7fa73b668e7d73deddb70c7d76ef9310e577 Mon Sep 17 00:00:00 2001 From: hugo gogo Date: Sun, 28 Aug 2022 18:42:25 +0200 Subject: [PATCH] added some content to tuto computer --- tutos/computer.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tutos/computer.txt b/tutos/computer.txt index 67652f4..a85225d 100644 --- a/tutos/computer.txt +++ b/tutos/computer.txt @@ -2,3 +2,18 @@ **sudo xinput --list** list all input **xinput disable 12** disable the input 12, touchscreen for Lenovo-FLEX-3-1120 **load to start :** add "xinput disable 12" in application autostart + +**appimage :** + **chmod +x .appimage** make it executable + **sudo vim /usr/share/applications/.desktop** create a file.desktop with content : + [Desktop Entry] + Exec=/absolute/path/to/file/.AppImage + Name= + Type=Application + **( cd /usr/share/applications && chmod 644 .desktop )** maybe change permissions + +**firefox extension source code** + **right click on install** and select "copy link" + **curl -L > /tmp/myextension.xpi** download the extension with curl inside a tmp file + **unzip /tmp/myextension.xpi -d /tmp/myextension** unzip the content + enjoy reading it ;)