diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-22 14:39:13 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-22 14:39:13 +0200 |
| commit | 1eab52cfcbcc9f510d1f5c6c1bcdd5b359971c2b (patch) | |
| tree | ac8d943a9f5e91858d5c44568b2068e52ce5c516 | |
| parent | 8bf3a3166a147adeee5094cfcfc8646ba2e96803 (diff) | |
| download | dotfiles-1eab52cfcbcc9f510d1f5c6c1bcdd5b359971c2b.tar.gz dotfiles-1eab52cfcbcc9f510d1f5c6c1bcdd5b359971c2b.tar.bz2 dotfiles-1eab52cfcbcc9f510d1f5c6c1bcdd5b359971c2b.zip | |
Added lock screen, prettier gdb and valgrind
| -rw-r--r-- | .gdbinit | 2 | ||||
| -rw-r--r-- | .zsh_aliases | 1 | ||||
| -rw-r--r-- | xmonad.hs | 3 |
3 files changed, 5 insertions, 1 deletions
@@ -1 +1,3 @@ set disassembly-flavor intel +set print pretty on +set prompt \ngdb> diff --git a/.zsh_aliases b/.zsh_aliases index 676940a..87ae2e9 100644 --- a/.zsh_aliases +++ b/.zsh_aliases @@ -7,6 +7,7 @@ alias ls="ls --color" alias grep="grep --color=auto" alias tree="tree -C" alias pacman="pacman --color=auto" +alias valgrind="colour-valgrind" # common commands alias less="less -N" # enable line number @@ -32,8 +32,8 @@ myLayouts = tiledBigMaster -- bigger master for code and smaller slave fo tiledEven = Tall 1 (3 / 100) (1 / 2) myStartupHook = do - spawnOnce "redshift -c /home/charles/.config/redshift.conf &" -- start redshift spawnOnce "xinput disable 'ETPS/2 Elantech Touchpad' &" -- disable touchpad + -- spawnOnce "redshift -c /home/charles/.config/redshift.conf &" -- start redshift myManageHook = insertPosition End Newer -- insert new window at the end of the current layout @@ -42,4 +42,5 @@ myKeys = [ ("<XF86AudioRaiseVolume>", spawn "pulseaudio-ctl up") -- volume u , ("<XF86AudioMute>", spawn "pulseaudio-ctl mute") -- volume mute , ("<XF86MonBrightnessUp>", spawn "xbacklight -inc 5") -- backlight up , ("<XF86MonBrightnessDown>", spawn "xbacklight -dec 5") -- backlight down + , ("<XF86ScreenSaver>", spawn "slock") -- lock screen ] |
