Skip to content

Commit 6c0da6f

Browse files
committed
desktop 0.1
1 parent ea58e8f commit 6c0da6f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.shell/aliases

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
alias sudo="sudo "
1717

1818
## system {{{
19+
alias grep="rg"
20+
1921
alias cd..='cd ..'
2022
alias u2='cd ../../'
2123
alias u3='cd ../../../'

.xmonad/xmobarrc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Config { font = "xft:Fira Code:size=10"
1010
, overrideRedirect = False
1111
, border = BottomBM 0
1212
, borderColor = "#3e3e3e"
13-
, commands = [ Run Network "wlp1s0" [ "-t" , "d:<rx> u:<tx>"
13+
, commands = [ Run Network "enp3s0" [ "-t" , "d:<rx> u:<tx>"
1414
, "-L" , "100"
1515
, "-H" , "700"
1616
, "-m" , "4"
@@ -63,5 +63,6 @@ Config { font = "xft:Fira Code:size=10"
6363
]
6464
, sepChar = "%"
6565
, alignSep = "}{"
66-
, template = " %StdinReader% }{%battery% / %disku% / %coretemp% / %memory% / %wlp1s0% / <fc=#ede7b4>%date%</fc> "
66+
, template = " %StdinReader% }{%mpd% / %disku% / %coretemp% / %memory% / %enp3s0% / <fc=#ede7b4>%date%</fc> "
6767
}
68+

.xmonad/xmonad.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ main = do
162162
]
163163
`additionalKeysP`
164164
[(otherMasks ++ "M-" ++ [key], screenWorkspace scr >>= flip whenJust (windows . action))
165-
| (key, scr) <- zip "wer" [0,1,2]
165+
| (key, scr) <- zip "wer" [2,0,1]
166166
, (otherMasks, action) <- [ ("", W.view)
167167
, ("S-", W.shift)]
168168
]

0 commit comments

Comments
 (0)