This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install aur access; | |
| sudo pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay-bin.git && cd yay-bin && makepkg -si | |
| yay -S vesktop-bin | |
| # enable multilib repo for steam | |
| sudo nano /etc/pacman.conf | |
| sudo pacman -Sy --noconfirm steam firefox sshfs vlc vlc-plugin-ffmpeg syncthing plasma-nm okular signal-desktop gwenview unrar partitionmanager exfat-utils dosfstools wireguard-tools | |
| sudo pacman -Sy --noconfirm libreoffice-fresh ttf-dejavu ttf-liberation ttf-droid ttf-ubuntu-font-family noto-fonts system-config-printer cups-pdf inkscape gimp kamera |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #Install Citrix Workspace App on Fedora 32 | |
| #Download Client From https://www.citrix.com/en-au/downloads/workspace-app/linux/workspace-app-for-linux-latest.html | |
| sudo dnf install -y ICAClientWeb-rhel-20.04.0.21-0.x86_64.rpm | |
| sudo dnf install -y compat-openssl10.x86_64 | |
| # Update libcrypto reference in desktop file | |
| sudo sed -i '/Exec=/d' /usr/share/applications/wfica.desktop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ## fix touchpad rightclick and middle click | |
| gsettings set org.gnome.desktop.peripherals.touchpad click-method 'areas' | |
| gsettings set org.gnome.desktop.peripherals.touchpad natural-scroll false | |
| #/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/binding '<Primary><Alt>t' | |
| #/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/command 'gnome-terminal &' | |
| #/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/name 'Launch Terminal' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## chose a provider from; | |
| # less /usr/share/dnscrypt-proxy/dnscrypt-resolvers.csv | |
| sudo pacman -Sy --noconfirm dnscrypt-proxy dnsmasq dnsutils | |
| cat <<-'EOF' | sudo SYSTEMD_EDITOR=tee systemctl edit dnscrypt-proxy.service | |
| [Service] | |
| ExecStart= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires -Version 4.0 | |
| #Requires -RunAsAdministrator | |
| Trap { Write-Host $_ -Fore Red ; pause ; exit 1 } | |
| $ErrorActionPreference = "Stop" | |
| function Mount-Iso([string] $isoPath) | |
| { | |
| if ( -not (Test-Path $isoPath)) { throw "$isoPath does not exist" } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| zip_date=`date +%Y-%m-%d` | |
| rom_zip="apps-$zip_date.zip" | |
| wget --timestamping https://gitlab.com/fdroid/fdroiddata/raw/master/stats/known_apks.txt | |
| apk_ids=( | |
| org.fdroid.fdroid # FDroid | |
| com.zegoggles.smssync # SMSBackup+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/configure b/configure | |
| index 40cadd2..6f563de 100755 | |
| --- a/configure | |
| +++ b/configure | |
| @@ -821,6 +821,7 @@ with_netapi | |
| with_openal | |
| with_opencl | |
| with_opengl | |
| +with_d3dadapter | |
| with_osmesa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <NotepadPlus> | |
| <UserLang name="Groovy" ext="groovy" udlVersion="2.1"> | |
| <Settings> | |
| <Global caseIgnored="no" /> | |
| <Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" /> | |
| </Settings> | |
| <KeywordLists> | |
| <Keywords name="Comments">03/* 04*/ 00// 01 02</Keywords> | |
| <Keywords name="Keywords1">abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true</Keywords> | |
| <Keywords name="Keywords2">as assert def mixin property test using in it</Keywords> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.gitblit.GitBlit | |
| import com.gitblit.utils.JGitUtils | |
| import org.eclipse.jgit.lib.Repository | |
| import org.slf4j.Logger | |
| @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.2' ) | |
| import groovyx.net.http.HTTPBuilder | |
| import groovyx.net.http.ContentType | |
| import groovyx.net.http.HttpResponseException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.gitblit.GitBlit | |
| import com.gitblit.utils.JGitUtils | |
| import org.eclipse.jgit.lib.Repository | |
| import org.slf4j.Logger | |
| @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.2' ) | |
| import groovyx.net.http.RESTClient | |
| import groovyx.net.http.HttpResponseException | |
| import groovyx.net.http.ContentType |
NewerOlder