I hereby claim:
- I am P4z on github.
- I am p4 (https://keybase.io/p4) on keybase.
- I have a public key whose fingerprint is 939C 7C85 E24C 5B59 8A23 16D8 4544 9157 DE55 5D8E
To claim this, I am signing this object:
| <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> | |
| <!DOCTYPE Resource SYSTEM "sty.dtd"> | |
| <Resource type="aamap" name="diamond" version="0.1" author="P4" category="sty"> | |
| <Map version="0.2.8"> | |
| <Settings> | |
| <Setting name="BALL_TEAM_MODE" value="0" /> | |
| </Settings> | |
| <World> | |
| <Field> | |
| <Axes number="12"/> |
| ### KERNEL TUNING ### | |
| # Increase size of file handles and inode cache | |
| fs.file-max = 2097152 | |
| # Do less swapping | |
| vm.swappiness = 10 | |
| vm.dirty_ratio = 60 | |
| vm.dirty_background_ratio = 2 |
| #!/bin/sh | |
| /bin/netstat -rn | grep ^195.54.122.206 > /dev/null | |
| if [[ $? -eq 1 ]] ; then /bin/iproute add 195.54.122.206/32 dev usb0; fi |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env tclsh | |
| # MOTD script original? / mod mewbies.com / mod P4 | |
| # http://www.mewbies.com/how_to_customize_your_console_login_message_tutorial.htm | |
| # * Variables | |
| set var(user) $env(USER) | |
| set var(path) $env(PWD) | |
| set var(home) $env(HOME) | |
| # * Calculate current system uptime |
| function fish_greeting | |
| #/usr/games/fortune -s | /usr/games/cowsay -nfhead-in | /usr/games/lolcat | |
| if test -x /etc/motd.tcl | |
| /etc/motd.tcl | |
| end | |
| #/usr/bin/cal -B1 -A1 #| /usr/games/lolcat -ap .333 -d 2 | |
| end |
| function fish_prompt | |
| #and set retc green; or set retc red | |
| set lastexit $status | |
| if test $lastexit = 0 | |
| set retc green | |
| else | |
| set retc red | |
| end | |
| tty|grep -q tty; and set tty tty; or set tty pts | |
| set_color $retc |