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

View File

@ -21,7 +21,7 @@ layout {
args "-p" "60000" "jas@hyperreal.coffee"
}
}
tab name="coldharbour.local" {
tab name="coldharbour" {
pane command="mosh" {
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
;; 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-unicode-font (font-spec :family "JetBrains Mono Nerd Font Mono" :size 28)
doom-big-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 14))
;; Use catppuccin-mocha theme
(setq doom-theme 'catppuccin-mocha)

View File

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