This file has been truncated, but you can view the full file.
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
{ | |
"Classes": { | |
"Accessory": { | |
"Members": { | |
"AccessoryType": { | |
"Category": "Data", | |
"MemberType": "Property", | |
"Name": "AccessoryType", | |
"Security": { | |
"Read": "None", |
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
{ | |
"Content": { | |
"Accessory": { | |
"x": 0, | |
"y": 0, | |
"w": 48, | |
"h": 48 | |
}, | |
"Actor": { | |
"x": 48, |
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
--[[ | |
Responsible for vibrating the current mobile device for a given amount of time. | |
]] | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
local HttpService = game:GetService("HttpService") | |
local enableVibration = require(ReplicatedStorage.Shared.Utilities.enableVibration) | |
local disableVibration = require(ReplicatedStorage.Shared.Utilities.disableVibration) |
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
function _setprompt { | |
local NOCOLOR="\[\033[0m\]" | |
local INFO_COLOR='\[\033[1;34m\]' | |
local PROMPT_COLOR='\[\033[1;32m\]' | |
function _parse_git_branch() { | |
if [ -n "$(git rev-parse --git-dir 2> /dev/null)" ]; then | |
if [ "$(git rev-list --count --all)" != "0" ]; then | |
echo -e "-[${INFO_COLOR}$(git rev-parse --abbrev-ref HEAD)${PROMPT_COLOR}]" | |
else |
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 | |
[[ $- != *i* ]] && return | |
xhost +local:root > /dev/null 2>&1 | |
export EDITOR=nano | |
export LESS_TERMCAP_mb=$'\E[01;31m' | |
export LESS_TERMCAP_md=$'\E[01;31m' | |
export LESS_TERMCAP_me=$'\E[0m' |