+ fix font sizes for normal DPI screen; + keybind for split_man

This commit is contained in:
Jeffrey Serio 2023-01-18 09:50:33 -06:00
parent cbafb86d70
commit f6b093f813
4 changed files with 15 additions and 15 deletions

View File

@ -1,7 +1,7 @@
configuration{ configuration{
modi: "drun,Emoji:/usr/bin/rofimoji -a copy"; modi: "drun,Emoji:/usr/bin/rofimoji -a copy";
lines: 5; lines: 5;
font: "JetBrainsMono Nerd Font Mono 22"; font: "JetBrainsMono Nerd Font Mono 12";
show-icons: true; show-icons: true;
icon-theme: "Papirus-Dark"; icon-theme: "Papirus-Dark";
terminal: "gnome-terminal"; terminal: "gnome-terminal";
@ -26,8 +26,8 @@ element-text, element-icon , mode-switcher {
} }
window { window {
height: 1200px; height: 600px;
width: 1500px; width: 800px;
border: 3px; border: 3px;
border-color: @border-col; border-color: @border-col;
background-color: @bg-col; background-color: @bg-col;
@ -58,7 +58,7 @@ textbox-prompt-colon {
} }
entry { entry {
padding: 6px; padding: 3px;
margin: 20px 0px 0px 10px; margin: 20px 0px 0px 10px;
text-color: @fg-col; text-color: @fg-col;
background-color: @bg-col; background-color: @bg-col;
@ -66,14 +66,14 @@ entry {
listview { listview {
border: 0px 0px 0px; border: 0px 0px 0px;
padding: 6px 0px 0px; padding: 3px 0px 0px;
margin: 10px 0px 0px 20px; margin: 10px 0px 0px 20px;
columns: 2; columns: 2;
background-color: @bg-col; background-color: @bg-col;
} }
element { element {
padding: 5px; padding: 3px;
background-color: @bg-col; background-color: @bg-col;
text-color: @fg-col ; text-color: @fg-col ;
} }
@ -92,7 +92,7 @@ mode-switcher {
} }
button { button {
padding: 10px; padding: 8px;
background-color: @bg-col-light; background-color: @bg-col-light;
text-color: @grey; text-color: @grey;
vertical-align: 0.5; vertical-align: 0.5;

View File

@ -21,7 +21,7 @@ layout {
args "-p" "60000" "jas@hyperreal.coffee" args "-p" "60000" "jas@hyperreal.coffee"
} }
} }
tab name="coldharbour.local" { tab name="coldharbour" {
pane command="mosh" { pane command="mosh" {
args "-p" "60000" "jas@coldharbour.local" args "-p" "60000" "jas@coldharbour.local"
} }

View File

@ -7,10 +7,10 @@
;; See 'C-h v doom-font' for documentation and more examples of what they ;; See 'C-h v doom-font' for documentation and more examples of what they
;; accept. For example: ;; accept. For example:
(setq doom-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 28) (setq doom-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 14)
doom-variable-pitch-font (font-spec :family "Rubik") doom-variable-pitch-font (font-spec :family "Rubik")
doom-unicode-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 28) doom-unicode-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 14)
doom-big-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 28)) doom-big-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 14))
;; Use catppuccin-mocha theme ;; Use catppuccin-mocha theme
(setq doom-theme 'catppuccin-mocha) (setq doom-theme 'catppuccin-mocha)

View File

@ -15,11 +15,11 @@ if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then
fi fi
## keybinding for convenient viewing of man pages ## keybinding for convenient viewing of man pages
if test -x "${HOME}/bin/zman"; then if test -x "${HOME}/bin/split_man"; then
zman-widget() { "${HOME}/bin/zman"} split_man-widget() { "${HOME}/bin/split_man"}
zle -N zman-widget zle -N split_man-widget
bindkey '^[m' zman-widget bindkey '^[m' split_man-widget
fi fi
## gumosh ## gumosh