I hereby claim:
- I am taktoa on github.
- I am taktoa (https://keybase.io/taktoa) on keybase.
- I have a public key whose fingerprint is F172 B1FB CE28 A456 5989 8FED 7B6D 8E67 26A3 9F37
To claim this, I am signing this object:
| #lang racket | |
| (require | |
| racket/gui | |
| sgl) | |
| (define c% | |
| (class canvas% | |
| (inherit refresh with-gl-context swap-gl-buffers) |
| import XMonad | |
| import XMonad.Config.Xfce | |
| import XMonad.Hooks.ManageHelpers | |
| import XMonad.Layout.NoBorders | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Hooks.EwmhDesktops | |
| import XMonad.Util.EZConfig | |
| main = xmonad $ ewmh xfceConfig { | |
| terminal = "xfce4-terminal", |
I hereby claim:
To claim this, I am signing this object:
| import Color exposing (..) | |
| import Debug | |
| import Graphics.Collage exposing (..) | |
| import Graphics.Element exposing (..) | |
| import Keyboard | |
| import Time exposing (..) | |
| import Window | |
| import Unicode exposing (..) | |
| -- | Mass of sphere |
This document contains useful information on various things in programming. Any time I find something that I end up looking up multiple times, I put it in here.
Copyright © 2015 Remy Goldschmidt [email protected]
This work is licensed under the [Creative Commons Attribution 4.0 International License][cc-by].
| # This is a configuration file for the MOC player. It should be named | |
| # 'config' and placed in the ~/.moc directory. As this file can specify | |
| # commands which invoke other applications, MOC will refuse to start if it | |
| # is not owned by either root or the current user, or if it is writable by | |
| # anyone other than it's owner. All options are given with their default | |
| # values, and therefore commented. | |
| # Comments begin with '#'. | |
| # You can use quotes and escape ('\') in parameters. | |
| # |
| -- ... all of your XMonad imports | |
| import Control.Concurrent (forkIO, threadDelay) | |
| import Control.Monad (void) | |
| main :: IO () | |
| main = fixPanel >> xmonad myConfig | |
| fixPanel :: IO () | |
| fixPanel = void $ forkIO $ do |
| -------------------------------------------------------------------------------- | |
| ---- Reset all metaflags ------------------------------------------------------- | |
| :unset +m | |
| :unset +r | |
| :unset +s | |
| :unset +t | |
| :unset +c | |
| -------------------------------------------------------------------------------- |
| BasedOnStyle: LLVM | |
| Language: Cpp | |
| Standard: Cpp11 | |
| AccessModifierOffset: -4 | |
| AlignAfterOpenBracket: true | |
| AlignEscapedNewlinesLeft: false | |
| AlignOperands: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: true | |
| AllowShortBlocksOnASingleLine: true |
| diff --git a/Makefile b/Makefile | |
| index e35159b..fdc4e64 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -5,7 +5,7 @@ DRULES=${DRULES_1},${DRULES_2},${DRULES_3} | |
| LANGUAGETOOL = languagetool -l en-US -d ${DRULES} | |
| -PREVIEWER := zathura | |
| +PREVIEWER := evince |