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
| ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
| Language Files Lines Code Comments Blanks | |
| ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
| YAML 173 272840 271640 220 980 | |
| Java 161 10141 7301 1202 1638 | |
| TypeScript 124 20101 6526 12084 1491 | |
| XML 73 2343 2209 17 117 | |
| Shell 58 6629 5229 863 537 | |
| Sass 49 1760 1405 72 283 | |
| HTML 42 1409 1361 19 29 |
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
| #!/usr/bin/env bash | |
| ######################################################################################################################## | |
| # INSTALLATION | |
| ######################################################################################################################## | |
| BIND_SERVICE="[Unit] | |
| Description=binding mouse events to keyboard shortcuts | |
| After=display-manager.service | |
| [Service] |
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
| #!/usr/bin/env bash | |
| ######################################################################################################################## | |
| # USAGE | |
| ######################################################################################################################## | |
| function usage() { | |
| echo "usage: glacier.sh [backup [init]] [clean [all]] [delete-all] [delete-archive ID] [doctor] [get KEY] " | |
| echo " [help] [last-backup] [list-archives [all]] [list-vaults] [log [all]] [restore-snapshot] " | |
| echo " [set KEY VALUE] [tree-hash ARCHIVE]" |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <style-scheme id="darcula" name="Darcula" version="1.0"> | |
| <author>Paul Neulinger</author> | |
| <description>Darcula color scheme</description> | |
| <!-- COLORS --> | |
| <color name="orange" value="#cc7832"/> | |
| <color name="yellow" value="#ffc66d"/> | |
| <color name="purple" value="#9876aa"/> | |
| <color name="text-fg" value="#a9b7c6"/> | |
| <color name="text-bg" value="#2b2b2b"/> |
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
| #!/usr/bin/env python3 | |
| import logging | |
| import re | |
| import shlex | |
| import time | |
| from argparse import ArgumentParser | |
| from functools import reduce | |
| from math import sqrt | |
| from os import path, devnull as DEVNULL |