View crontab
This file contains 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
@reboot /home/pi/pepe/script.sh | |
*/5 * * * * /usr/local/bin/znc >/dev/null 2>&1 |
View thelounge.service
This file contains 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
[Unit] | |
Description=The Lounge IRC client | |
After=thelounge.service | |
[Service] | |
Type=simple | |
ExecStart=/home/pi/.yarn/bin/thelounge start | |
User=pi | |
Group=pi | |
Restart=on-failure |
View mouse accel.ahk
This file contains 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
^MButton::DllCall("SystemParametersInfo", Int,113, Int,0, UInt,10, Int,2) | |
!MButton::DllCall("SystemParametersInfo", Int,113, Int,0, UInt,20, Int,2) |
View style
This file contains 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
.irc-bold { | |
text-shadow: 0 0 2px; | |
font-weight: 400; | |
} | |
#windows #form, .messages .msg, .userlist { | |
font-family: "fixedsys excelsior beta","hack",roboto; | |
font-size: 16px; | |
-moz-osx-font-smoothing: grayscale; | |
} |
View Default (OSX).sublime-keymap
This file contains 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
Show hidden characters
[ | |
{ "keys": ["m"], "command": "enter_insert_mode", | |
"context": | |
[ | |
{"key": "setting.command_mode"}, | |
{"key": "selection_empty"} | |
] | |
}, | |
{ "keys": ["M"], "command": "enter_insert_mode", "args": |
View Edge-like scrolling on Firefox
This file contains 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
general.smoothScroll.currentVelocityWeighting: 0 | |
general.smoothScroll.mouseWheel.durationMaxMS: 150 | |
general.smoothScroll.stopDecelerationWeighting; 0.82 | |
mousewheel.min_line_scroll_amount: 25 |
View userChrome.css
This file contains 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
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_bookmarks_toolbar.css made available under Mozilla Public License v. 2.0 | |
See the above repository for updates as well as full license text. */ | |
#PersonalToolbar{ | |
--uc-bm-height: 21px; /* Might need to adjust if the toolbar has other buttons */ | |
--uc-bm-padding: 4px; /* Vertical padding to be applied to bookmarks */ | |
--uc-autohide-toolbar-delay: 600ms; /* The toolbar is hidden after 0.6s */ | |
/* 0deg = "show" ; 90deg = "hide" ; Set the following to control when bookmarks are shown */ | |
--uc-autohide-toolbar-focus-rotation: 0deg; /* urlbar is focused */ |
View weechat.conf
This file contains 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
# | |
# weechat.conf -- weechat v1.0.1 | |
# | |
[debug] | |
[startup] | |
command_after_plugins = "" | |
command_before_plugins = "" | |
display_logo = on |
View .bashrc
This file contains 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
# Turn on 256 color support... | |
if [ "x$TERM" = "xxterm" ] | |
then | |
export TERM="xterm-256color" | |
fi |
View monitor.py
This file contains 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
# This program monitors the screensaver and turns the monitor off | |
# when the screensaver blanks the screen, and back on again when | |
# the screensaver unblanks the screen. | |
# once you put this file in /home/pi/.local/bin/ type: | |
# sudo nano /home/pi/.config/lxsession/LXDE-pi/autostart | |
# and add this line: | |
# @python /home/pi/.local/bin/monitor.py | |
import sys # for exit() |
NewerOlder