updating some things, not sure font sizes will be an issue on desktop
This commit is contained in:
parent
43623eaa0d
commit
69dac22bb9
@ -184,7 +184,7 @@ font:
|
|||||||
style: Bold Italic
|
style: Bold Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 12.0
|
size: 9.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Config {
|
Config {
|
||||||
|
|
||||||
-- appearance
|
-- appearance
|
||||||
font = "xft:Fira Code:size=12:antialias=true:hinting=true"
|
font = "xft:Fira Code:size=9:antialias=true:hinting=true"
|
||||||
, bgColor = "#121e32"
|
, bgColor = "#121e32"
|
||||||
, fgColor = "#dfdfef"
|
, fgColor = "#dfdfef"
|
||||||
, position = Top
|
, position = Top
|
||||||
|
|||||||
@ -84,7 +84,7 @@ import XMonad.Util.SpawnOnce
|
|||||||
-- The preferred terminal program, which is used in a binding below and by
|
-- The preferred terminal program, which is used in a binding below and by
|
||||||
-- certain contrib modules.
|
-- certain contrib modules.
|
||||||
myTerminal :: String
|
myTerminal :: String
|
||||||
myTerminal = "LIBGL_ALWAYS_SOFTWARE=1 alacritty"
|
myTerminal = "alacritty"
|
||||||
|
|
||||||
myFileManager :: String
|
myFileManager :: String
|
||||||
myFileManager = "thunar"
|
myFileManager = "thunar"
|
||||||
@ -175,7 +175,7 @@ myKeys conf@XConfig {XMonad.modMask = modm} = M.fromList $
|
|||||||
, ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
|
, ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
|
||||||
|
|
||||||
-- Resize viewed windows to the correct size
|
-- Resize viewed windows to the correct size
|
||||||
, ((modm, xK_b ), refresh)
|
, ((modm .|. shiftMask, xK_y ), refresh)
|
||||||
|
|
||||||
-- Move focus to the next window
|
-- Move focus to the next window
|
||||||
, ((modm, xK_Tab ), windows W.focusDown)
|
, ((modm, xK_Tab ), windows W.focusDown)
|
||||||
@ -223,7 +223,7 @@ myKeys conf@XConfig {XMonad.modMask = modm} = M.fromList $
|
|||||||
, ((modm, xK_b ), sendMessage ToggleStruts)
|
, ((modm, xK_b ), sendMessage ToggleStruts)
|
||||||
|
|
||||||
-- -- Quit xmonad
|
-- -- Quit xmonad
|
||||||
-- , ((modm .|. shiftMask, xK_apostrophe ), io (exitSuccess))
|
, ((modm .|. shiftMask, xK_apostrophe ), io (exitSuccess))
|
||||||
|
|
||||||
-- Restart xmonad
|
-- Restart xmonad
|
||||||
, ((modm, xK_apostrophe ), spawn "xmonad --recompile; xmonad --restart")
|
, ((modm, xK_apostrophe ), spawn "xmonad --recompile; xmonad --restart")
|
||||||
@ -248,10 +248,10 @@ myKeys conf@XConfig {XMonad.modMask = modm} = M.fromList $
|
|||||||
, ((modm, xK_Escape), spawn "/home/solomon/.local/bin/prompt \"Are you sure you want to lock?\" \"slock\" 1")
|
, ((modm, xK_Escape), spawn "/home/solomon/.local/bin/prompt \"Are you sure you want to lock?\" \"slock\" 1")
|
||||||
|
|
||||||
-- unlock bitwarden cli and store session key
|
-- unlock bitwarden cli and store session key
|
||||||
, ((modm .|. shiftMask, xK_t ), spawn "/home/solomon/.local/bin/bw-unlock")
|
, ((modm .|. shiftMask, xK_x ), spawn "/home/solomon/.local/bin/bw-unlock")
|
||||||
|
|
||||||
-- search for password using bitwarden cli through dmenu
|
-- search for password using bitwarden cli through dmenu
|
||||||
, ((modm, xK_t ), spawn "/home/solomon/.local/bin/passwords")
|
, ((modm, xK_x ), spawn "/home/solomon/.local/bin/passwords")
|
||||||
|
|
||||||
-- launch searcher
|
-- launch searcher
|
||||||
, ((modm, xK_s ), spawn "/home/solomon/.local/bin/dmenusearch")
|
, ((modm, xK_s ), spawn "/home/solomon/.local/bin/dmenusearch")
|
||||||
@ -499,7 +499,7 @@ myStartupHook = do
|
|||||||
spawnOnce "dunst &" -- notification daemon
|
spawnOnce "dunst &" -- notification daemon
|
||||||
|
|
||||||
-- Startup Applications
|
-- Startup Applications
|
||||||
-- spawnOnce "guake &"
|
spawnOnce "guake &"
|
||||||
spawnOnce "barrier &"
|
spawnOnce "barrier &"
|
||||||
spawnOnce "nextcloud &"
|
spawnOnce "nextcloud &"
|
||||||
spawnOnce "slack &"
|
spawnOnce "slack &"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user