Requirements:
- Latest Proton (GE-Proton, Proton-Experimental are both okay)
- git
- wine64
- lutris (winetricks)
- Install system packages for python (3.11.3 is okay):
| lsusb = `lsusb`.split("\n").reject { |x| x.include?("root") }.map do |e| | |
| ar = e.scan(/Bus (\d+) Device \d+: ID [0-9a-f:]+ (.*)/).flatten | |
| ar[0] = "usb#{ar[0].to_i}" | |
| ar | |
| end | |
| sysbus = `ls -l /sys/bus/usb/devices`.split("\n").map do |e| | |
| e.scan(/(usb\d+) -> .+\/([0-9a-f:\.]+)\/usb\d+/).flatten | |
| end.reject { |x| x.empty? } |
| #!/bin/bash | |
| # btrfs-undelete | |
| # Copyright (C) 2013 Jörg Walter <[email protected]> | |
| # This program is free software; you can redistribute it and/or modify it under | |
| # the term of the GNU General Public License as published by the Free Software | |
| # Foundation; either version 2 of the License, or any later version. | |
| if [ ! -b "$1" -o -z "$2" -o -z "$3" ]; then | |
| echo "Usage: $0 <dev> <file/dir> <dest>" 1>&2 | |
| echo |
If you are using Linux, it is possible to use wget to update the IP. Here is a sample URL:
https://dyndns.topdns.com/update?hostname=www.example.com&username=myusername&password=mypassword
The above one will detect your IP automatically and perform the update. If you want to update with a custom IP address you can use:
https://dyndns.topdns.com/update?hostname=www.example.com&username=myusername&password=mypassword&myip=192.168.0.1
| # It looks like -multiwindow mode triggers the static color visual in both the internal x2go xserver and the external vcxsrv | |
| # But it also looks like -multiwindow mode is how x2go client allows resizing of the remote desktop | |
| # ...so I'm looking for a way to allow resizing of remote desktop w/out triggering static color visual. | |
| # | |
| # ...output of vcxsrv.exe's usage note: | |
| Usage... | |
| Vcxsrv [:<display>] [option] | |
| :display-number |
| #!/bin/bash | |
| # Copyright (c) 2021 Soumya Deb <[email protected]> | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |