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 prefix to control-f | |
| set -g prefix C-f | |
| #unbind system defined prefix | |
| unbind C-b | |
| # helps in faster key repetition | |
| set -sg escape-time 0 | |
| # start session number from 1 rather than 0 |
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
| ################################# | |
| # | |
| # Backend | |
| # | |
| ################################# | |
| # Backend to use: "xrender" or "glx". | |
| # GLX backend is typically much faster but depends on a sane driver. | |
| backend = "glx"; |
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
| import pickle | |
| import weakref | |
| from contextlib import contextmanager, suppress | |
| from datetime import datetime | |
| from itertools import islice | |
| from logging import getLogger | |
| from pathlib import Path | |
| from libqtile import bar, hook, layout, widget | |
| from libqtile.command import lazy |
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
| unbindall | |
| bind "0" "slot10" | |
| bind "1" "slot1" | |
| bind "2" "slot2" | |
| bind "3" "slot3" | |
| bind "4" "slot4" | |
| bind "5" "slot5" | |
| bind "6" "slot6" | |
| bind "7" "slot7" | |
| bind "8" "slot8" |
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 | |
| echo "===============================" | |
| echo "Installing PHP 7" | |
| echo "===============================" | |
| sudo yum install php70 | |
| echo "===============================" | |
| echo "Installing PHP 7 additional commonly used php packages" | |
| echo "===============================" |
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
| atom-text-editor.editor { | |
| .syntax--punctuation.syntax--whitespace.syntax--comment.syntax--leading, | |
| .syntax--source { | |
| font-family: FiraCode-Retina; // https://github.com/tonsky/FiraCode | |
| text-rendering: optimizeLegibility; | |
| letter-spacing: 0; | |
| } | |
| .syntax--string.quoted, | |
| .syntax--string.regexp { |
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
| ! Font | |
| URxvt.font: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:hinting=true | |
| URxvt.boldFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:hinting=true | |
| URxvt.italicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:italic:autohint=true:hinting=true | |
| URxvt.bolditalicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:italic:autohint=true:hinting=true | |
| URxvt.letterSpace: -1 | |
| ! Scrollbar | |
| URxvt*scrollBar: false |
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
| /* | |
| Instructions for MacOS: | |
| - Install the fonts 'Operator Mono' & 'Fira Code' | |
| - Install theme 'Dark Candy' | |
| - Add the following config to the VS Code settings.json: | |
| { | |
| "editor.renderWhitespace": "all", | |
| "editor.fontSize": 14, |
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
| FROM chriszarate/wordpress | |
| RUN \ | |
| apt-get update && \ | |
| apt-get install unzip wget mysql-client -y && \ | |
| rm -rf /var/lib/apt/lists/* | |
| COPY ./uploads.ini /usr/local/etc/php/conf.d/uploads.ini | |
| COPY docker-entrypoint.sh /usr/local/bin/ |
OlderNewer