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
if [[ "$HOSTTYPE" == "i686" ]]; then | |
pacman=" | |
pacman-6.0.0-4-i686.pkg.tar.zst | |
pacman-mirrors-20210703-1-any.pkg.tar.zst | |
msys2-keyring-1~20210213-2-any.pkg.tar.zst | |
" | |
zstd=zstd-1.5.0-1-i686.pkg.tar.xz | |
else | |
pacman=" | |
pacman-6.0.1-18-x86_64.pkg.tar.zst |
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 | |
# | |
# This script is for Arch Linux to configure XRDP for enhanced session mode | |
# | |
# The configuration is adapted from the Ubuntu 16.04 script. | |
# | |
if [ "$(id -u)" -ne 0 ]; then | |
echo 'This script must be run with root privileges' >&2 |
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
sudo apt autoremove libreoffice libreoffice-core libreoffice-writer libreoffice-calc libreoffice-base libreoffice-common libreoffice-help-common libreoffice-help-en-us libreoffice-style-breeze libreoffice-style-colibre libreoffice-style-elementary libreoffice-style-yaru |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.1" xmlns:feeder="https://nononsenseapps.com/feeder"> | |
<head> | |
<title> | |
Feeder | |
</title> | |
</head> | |
<body> | |
<outline feeder:notify="false" feeder:imageUrl="https://vanilla.futurecdn.net/techradar/1110705/apple-touch-icon.png" feeder:fullTextByDefault="true" feeder:openArticlesWith="" feeder:alternateId="false" title="TechRadar - All the latest technology news" text="TechRadar - All the latest technology news" type="rss" xmlUrl="http://www.techradar.com/rss"/> | |
<outline feeder:notify="false" feeder:imageUrl="https://www.aljazeera.com/images/logo_aje.png" feeder:fullTextByDefault="true" feeder:openArticlesWith="" feeder:alternateId="false" title="Al Jazeera" text="Al Jazeera" type="rss" xmlUrl="https://www.aljazeera.com/xml/rss/all.xml"/> |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\SCSI\Disk&Ven_Samsung&Prod_Samsung_970_EVO\5&1ec51bf7&0&000000] | |
"FriendlyName"="Samsung 970 EVO 512GB" | |
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\SCSI\CdRom&Ven_NECVMWar&Prod_VMware_SATA_CD01\5&260e6d66&0&010000] | |
"FriendlyName"="Samsung DVD Drive SATA" | |
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\ACPI\VMW0003\4&1bd7f811&0] | |
"DeviceDesc"="@msmouse.inf,%*pnp0f13.devicedesc%;Apple Mighty Mouse" |
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
# Take-DriveOwnership.ps1 | |
# Script to take ownership of all files on a specified drive for the current user | |
# IMPORTANT: This script requires administrative privileges to run | |
param ( | |
[Parameter(Mandatory=$true)] | |
[string]$DriveLetter | |
) | |
# Validate drive letter format |