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
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:aapt="http://schemas.android.com/aapt"> | |
<aapt:attr name="android:drawable"> | |
<vector | |
android:width="160dp" | |
android:height="160dp" | |
android:viewportWidth="240" | |
android:viewportHeight="240"> | |
<path android:pathData="M120,120m-120,0a120,120 0,1 1,240 0a120,120 0,1 1,-240 0"> | |
<aapt:attr name="android:fillColor"> |
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 | |
# Open the url given as a parameter as a standalone window of Google Chrome | |
function app () { | |
local profile="" | |
local protocol="" | |
if [[ $1 != *"://"* ]]; then | |
protocol="https://" | |
fi | |
if [ -n "$2" ] ; then |
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
# Copy paste the commands below to download Noto Color Emoji and install it. | |
(_FONTCONFIG='<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- Add emoji generic family --> | |
<alias binding="strong"> | |
<family>emoji</family> | |
<default><family>Noto Color Emoji</family></default> |
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 | |
function keymapRemap() { | |
hidutil property --set '{"UserKeyMapping":[ | |
{ | |
"HIDKeyboardModifierMappingSrc":0x700000064, | |
"HIDKeyboardModifierMappingDst":0x700000029 | |
} | |
]}' | |
} |