From 43623eaa0d27dbc8462eff1fc6cd559f2329bd84 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Sun, 2 May 2021 20:58:22 +0930 Subject: [PATCH 1/2] added pulseaudio --- default-programs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default-programs b/default-programs index e3f2491..8dcff07 100644 --- a/default-programs +++ b/default-programs @@ -17,6 +17,7 @@ xclip numlockx zenity pavucontrol +pulseaudio nfs-utils newsboat blueman @@ -80,4 +81,4 @@ xdotool xterm backlight-control lightdm -lightdm-webkit-theme-aether +lightdm-webkit-theme-litarvan From 69dac22bb9f23a67d4d83fed3eabf36b71595164 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Sun, 2 May 2021 21:34:49 +0930 Subject: [PATCH 2/2] updating some things, not sure font sizes will be an issue on desktop --- .config/alacritty/alacritty.yml | 2 +- .config/xmobar/xmobarrc.hs | 2 +- .xmonad/xmonad.hs | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index aa49ca5..f35e53d 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -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. diff --git a/.config/xmobar/xmobarrc.hs b/.config/xmobar/xmobarrc.hs index fb3633d..0f0dd2d 100644 --- a/.config/xmobar/xmobarrc.hs +++ b/.config/xmobar/xmobarrc.hs @@ -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 diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 96b3f3a..5b30339 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -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 &"