Skip to content

Instantly share code, notes, and snippets.

View banasiak's full-sized avatar
👻
Boo!

Richard Banasiak banasiak

👻
Boo!
View GitHub Profile
@banasiak
banasiak / install_xrdp.sh
Created November 29, 2022 00:22
Hyper-V Enhanced Session (Ubuntu 22.04 LTS)
#!/bin/bash
# Instructions: https://gist.github.com/jepio/39bd91d63ee7f02851b5253694f07908
# This Script: https://github.com/Hinara/linux-vm-tools/blob/ubuntu20-04/ubuntu/22.04/install.sh
#
# This script is for Ubuntu 22.04 Jammy Jellyfish to download and install XRDP+XORGXRDP via
# source.
#
# Major thanks to: http://c-nergy.be/blog/?p=11336 for the tips.
@banasiak
banasiak / BanasiakCat_V2.xml
Created January 12, 2024 18:06
Color scheme for the new version of logcat
<option name="LOGCAT_V2_LEVEL_ASSERT">
<value>
<option name="FOREGROUND" value="ffffff" />
<option name="BACKGROUND" value="9876aa" />
</value>
</option>
<option name="LOGCAT_V2_LEVEL_DEBUG">
<value>
<option name="FOREGROUND" value="0" />
<option name="BACKGROUND" value="aaaaaa" />
@banasiak
banasiak / .bashrc
Created July 5, 2024 16:59
Debian/Ubuntu .bashrc Config File
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac