Compare commits
2 commits
148080d470
...
149f441bbe
Author | SHA1 | Date | |
---|---|---|---|
149f441bbe | |||
a15495ff49 |
5 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
||||||
# startx automatically if on first tty
|
# # startx automatically if on first tty
|
||||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
# if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||||||
startx
|
# startx
|
||||||
logout
|
# logout
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
|
|
|
@ -35,3 +35,4 @@ export DOTFILES_DIR DOTFILES_EXTRA_DIR
|
||||||
|
|
||||||
# welcome art
|
# welcome art
|
||||||
! is-tty && $DOTFILES_DIR/bin/gradient
|
! is-tty && $DOTFILES_DIR/bin/gradient
|
||||||
|
|
||||||
|
|
|
@ -7,4 +7,8 @@ xss-lock -- ~/bin/lock &
|
||||||
|
|
||||||
unclutter --timeout 1 &
|
unclutter --timeout 1 &
|
||||||
|
|
||||||
|
# set a new random color
|
||||||
|
~/.config/qtile/.colors/colors.py
|
||||||
|
|
||||||
SKIP_WM_RESET=1 autorandr -c --default default
|
SKIP_WM_RESET=1 autorandr -c --default default
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ M.keys = {
|
||||||
{ key = "V", mods = "CTRL|SHIFT", action = act.PasteFrom "PrimarySelection" },
|
{ key = "V", mods = "CTRL|SHIFT", action = act.PasteFrom "PrimarySelection" },
|
||||||
-- change font size
|
-- change font size
|
||||||
{ key = "-", mods = "CTRL", action = "DecreaseFontSize" },
|
{ key = "-", mods = "CTRL", action = "DecreaseFontSize" },
|
||||||
{ key = "+", mods = "CTRL", action = "IncreaseFontSize" },
|
{ key = "=", mods = "CTRL", action = "IncreaseFontSize" },
|
||||||
-- { key = "Space", mods = "CTRL|SHIFT", action = "QuickSelect" },
|
-- { key = "Space", mods = "CTRL|SHIFT", action = "QuickSelect" },
|
||||||
{ key = "Space", mods = "CTRL|SHIFT", action = "ActivateCopyMode" },
|
{ key = "Space", mods = "CTRL|SHIFT", action = "ActivateCopyMode" },
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ return {
|
||||||
},
|
},
|
||||||
font = wezterm.font("MonoLisa Nerd Font"),
|
font = wezterm.font("MonoLisa Nerd Font"),
|
||||||
adjust_window_size_when_changing_font_size = false,
|
adjust_window_size_when_changing_font_size = false,
|
||||||
|
initial_cols = 80,
|
||||||
colors = catppuccin,
|
colors = catppuccin,
|
||||||
use_fancy_tab_bar = false,
|
use_fancy_tab_bar = false,
|
||||||
hide_tab_bar_if_only_one_tab = true,
|
hide_tab_bar_if_only_one_tab = true,
|
||||||
|
|
Loading…
Reference in a new issue