"indent_guide_options": ["draw_active"],
"always_show_minimap_viewport": false,
"translate_tabs_to_spaces": true,
"save_on_focus_lost": true,
"caret_style": "smooth",
"highlight_line": true,
"spell_check": false,
"scroll_speed": 1.2,
"word_wrap": true,
"font_size": 11,
🏃♂️
Git remember credentials
git config --global credential.helper cache
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
# In ~/.zshrc Add this to end of the document and save TO DISABLE DYNAMIC TITLE IN TERMINAL!!! | |
DISABLE_AUTO_TITLE="true" | |
# Enable * gblob | |
setopt glob |
check this javascript file
/usr/share/cinnamon/applets/[email protected]/applet.js
you should be able to edit that. i'm gonna check myself if i can find it.
if (this.metaWindow.minimized) {
title = "["+ title +"]";
} else if (this.metaWindow.tile_type == Meta.WindowTileType.TILED) {
title = "|"+ title;
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
https://www.linux.org/threads/creating-icon-themes.11826/ | |
actions - Icons for actions (such as redo, close, play, etc.) that may be seen in toolbars, menus, buttons, etc. | |
animations - Images that are used to make animated icons (such as "loading spinners" or disc-burning progress) | |
apps - Icons for specific applications or for applications of a general type | |
categories - Icons for various application categories | |
devices - Icons for devices such as mounted storage media, optical disks, iPods, phones, printers, etc. | |
emblems - Icons for tags and file properties (such as the "unreadable" or "soft-link" symbol) |
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
// `rgbToHsl` | |
// Converts an RGB color value to HSL. | |
// *Assumes:* r, g, and b are contained in [0, 255] or [0, 1] | |
// *Returns:* { h, s, l } in [0,1] | |
function rgbToHsl(r, g, b) { | |
r = bound01(r, 255); | |
g = bound01(g, 255); | |
b = bound01(b, 255); |
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
/* https://rawgit.com/surajmandalcell/6ffd8d4d75c271271753d4d111e40754/raw/f90930780358332bcb2a2f16cc9053e48a310efc/cssQuick.css */ | |
.center-it-x{ | |
margin-left: 50%; | |
transform: translateX(-50%); | |
} | |
.center-it-y{ | |
margin-top: 50%; | |
transform: translateY(-50%); | |
} |
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 | |
set -e | |
# Deploy built docs to this branch | |
TARGET_BRANCH=master | |
if [ ! -d "$SOURCE_DIR" ]; then | |
echo "SOURCE_DIR ($SOURCE_DIR) does not exist, build the source directory before deploying" | |
exit 1 | |
fi |
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 | |
CACHEDIR="/var/cache/fedy/sublimetext" | |
if [[ "$(uname -m)" = "x86_64" ]]; then | |
ARCH="x64" | |
else | |
ARCH="x32" | |
fi |