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
| # Write your default config options here! | |
| xy=486 | |
| vo=vdpau | |
| vc=ffh264vdpau,ffmpeg12vdpau,ffwmv3vdpau,ffvc1vdpau, | |
| dvd-device=/dev/cdrom | |
| lavdopts=threads=2 | |
| ao=alsa,oss | |
| use-filename-title=yes | |
| framedrop=yes | |
| hardframedrop=no |
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
| # Write your default config options here! | |
| geometry=482x276 | |
| vo=vdpau | |
| #ao=pulse | |
| hwdec = auto | |
| ao=alsa,oss | |
| cache=36384 |
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
| /server add geekshed irc.geekshed.net/6667 | |
| /server del freenode | |
| /mouse enable|disable|toggle [<delay>] | |
| /set weechat.look.mouse on | |
| /set irc.server.geekshed.autoconnect on | |
| /set irc.server.geekshed.command "/msg nickserv identify ********" | |
| /set irc.server.geekshed.autojoin "#bleepingcomputer,#jupiterbroadcasting,#cirrus" | |
| /set irc.server.freenode.username "cirrus" |
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/sh | |
| # | |
| # by Sairon Istyar, 2012 | |
| # distributed under the GPLv3 license | |
| # http://www.opensource.org/licenses/gpl-3.0.html | |
| # | |
| ### CONFIGURATION ### | |
| # program to use for torrent download | |
| # magnet link to torrent will be appended |
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 | |
| # The author of the original script is unknown to me. The first entry I can | |
| # find was posted at 2010-03-21 09:50:09 on Arch Linux Forums (doesn't mean the | |
| # poster is the author at all): | |
| # | |
| p=1 | |
| f=75 s=13 r=2000 t=0 | |
| w=$(tput cols) h=$(tput lines) | |
| # ab -> idx = a*4 + b | |
| # 0: up, 1: right, 2: down, 3: left |
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/python | |
| ''' pms | |
| Copyright (C) 2013 nagev | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |
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
| background yes | |
| use_xft yes | |
| xftfont DejaVu Sans Mono:size=8 | |
| xftalpha 0.8 | |
| out_to_console no | |
| update_interval 5.0 | |
| total_run_times 0 | |
| draw_shades no | |
| # Create own window instead of using desktop (required in nautilus) |
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/sh | |
| # Send the header so that i3bar knows we want to use JSON: | |
| echo '{"version":1}' | |
| # Begin the endless array. | |
| echo '[' | |
| # We send an empty first array of blocks to make the loop simpler: | |
| 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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright 2013 Matt Martz | |
| # All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may | |
| # not use this file except in compliance with the License. You may obtain | |
| # a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.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
| #!/usr/bin/python2 | |
| # speedometer.py | |
| # Copyright (C) 2001-2011 Ian Ward | |
| # | |
| # This module is free software; you can redistribute it and/or | |
| # modify it under the terms of the GNU Lesser General Public | |
| # License as published by the Free Software Foundation; either | |
| # version 2.1 of the License, or (at your option) any later version. | |
| # |