top
htop
atop
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
alias.st status | |
alias.ci commit | |
alias.co checkout | |
alias.di diff | |
alias.br branch | |
alias.mod ls-files -m | |
alias.tip log -1 | |
alias.ds diff --cached | |
alias.sm submodule | |
alias.line log --oneline |
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
set useletters=1 | |
set hintkeys=dsafrewq,tgcx | |
// don't run Vrome in those sites | |
set disablesites=0.0.0.0:5801, localhost:3000 |
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
Section "InputClass" | |
Identifier "keyboard-all" | |
Driver "evdev" | |
Option "XkbLayout" "us,gr" | |
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll" | |
MatchIsKeyboard "on" | |
EndSection |
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
### | |
Imports data attributes in form of data-slider-option | |
into the options | |
### | |
parseDataAttributes: -> | |
# Loop through the data that are not the plugin itself and are in | |
# the required form (data-slider-option) | |
for k, v of @$element.data() when k isnt 'plugin_slider' and /^slider/.test k | |
# separate the option name, here we have it capitalized | |
option_name = (k.match /(?:slider)(.*)/i)[1] |
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
$.fn.plugin = fn if $.fn? | |
$.ender fn, true if $.ender? |
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
{ angular: | |
{ stars_age_ratio: 8.361512836887439, | |
forks_age_ratio: 1.7304933104716238 }, | |
ember: | |
{ stars_age_ratio: 9.336994239940362, | |
forks_age_ratio: 1.7927237094381803 }, | |
backbone: | |
{ stars_age_ratio: 14.705360715510952, | |
forks_age_ratio: 2.8684681847813818 }, | |
batman: |
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
[global_config] | |
geometry_hinting = False | |
enabled_plugins = CustomCommandsMenu, ActivityWatch, TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
title_transmit_bg_color = "#008ec8" | |
focus = mouse | |
tab_position = hidden | |
[keybindings] | |
[profiles] | |
[[default]] | |
scrollbar_position = hidden |
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
calculateBounds: ($element) -> | |
offset = $element.offset() | |
width = $element.width() | |
height = $element.height() | |
{ | |
nw: | |
x: offset.left | |
y: offset.top | |
ne: |
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
Xft.antialias: true | |
Xft.hinting: true | |
Xft.hintstyle: hintslight | |
Xft.rgba: rgb | |
background_color=#222222 | |
*.URxvt.font: xft: Liberation Mono-10 | |
*.URxvt.boldFont: xft: Liberation Mono-10 |