updating some things, not sure font sizes will be an issue on desktop

This commit is contained in:
Solomon Laing 2021-05-02 21:34:49 +09:30
parent 43623eaa0d
commit 69dac22bb9
3 changed files with 8 additions and 8 deletions

View File

@ -184,7 +184,7 @@ font:
style: Bold Italic
# Point size
size: 12.0
size: 9.0
# 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.

View File

@ -1,7 +1,7 @@
Config {
-- appearance
font = "xft:Fira Code:size=12:antialias=true:hinting=true"
font = "xft:Fira Code:size=9:antialias=true:hinting=true"
, bgColor = "#121e32"
, fgColor = "#dfdfef"
, position = Top

View File

@ -84,7 +84,7 @@ import XMonad.Util.SpawnOnce
-- The preferred terminal program, which is used in a binding below and by
-- certain contrib modules.
myTerminal :: String
myTerminal = "LIBGL_ALWAYS_SOFTWARE=1 alacritty"
myTerminal = "alacritty"
myFileManager :: String
myFileManager = "thunar"
@ -175,7 +175,7 @@ myKeys conf@XConfig {XMonad.modMask = modm} = M.fromList $
, ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
-- Resize viewed windows to the correct size
, ((modm, xK_b ), refresh)
, ((modm .|. shiftMask, xK_y ), refresh)
-- Move focus to the next window
, ((modm, xK_Tab ), windows W.focusDown)
@ -223,7 +223,7 @@ myKeys conf@XConfig {XMonad.modMask = modm} = M.fromList $
, ((modm, xK_b ), sendMessage ToggleStruts)
-- -- Quit xmonad
-- , ((modm .|. shiftMask, xK_apostrophe ), io (exitSuccess))
, ((modm .|. shiftMask, xK_apostrophe ), io (exitSuccess))
-- Restart xmonad
, ((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")
-- 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
, ((modm, xK_t ), spawn "/home/solomon/.local/bin/passwords")
, ((modm, xK_x ), spawn "/home/solomon/.local/bin/passwords")
-- launch searcher
, ((modm, xK_s ), spawn "/home/solomon/.local/bin/dmenusearch")
@ -499,7 +499,7 @@ myStartupHook = do
spawnOnce "dunst &" -- notification daemon
-- Startup Applications
-- spawnOnce "guake &"
spawnOnce "guake &"
spawnOnce "barrier &"
spawnOnce "nextcloud &"
spawnOnce "slack &"