Skip to content

Latest commit

 

History

History
236 lines (174 loc) · 3.59 KB

File metadata and controls

236 lines (174 loc) · 3.59 KB

Configurables

Related to themes or resolutions.

.bash_profile

1. 1440p (120 DPI) sizes

export QT_SCREEN_SCALE_FACTORS=1.25

.Xresources

1. 1440p (120 DPI) sizes

Xcursor.size:  30
Xft.dpi:       120
Xft.hintstyle: hintfull

bspwm

1. 1440p (120 DPI) sizes

bspc config border_width 3
bspc config window_gap   6
bspc config top_padding  40

2. Catppuccin Mocha border colors:

bspc config normal_border_color  "#1E1E2E"
bspc config focused_border_color "#FAB387"

3. Don't forget to set your wallpaper

feh --bg-fill "$HOME/Pictures/Wallpapers/yourwallpaperhere.png"

dunst

1. 1440p (120 DPI) sizes

[global]
scale = 1
font = Iosevka SS05 20px

min_icon_size      = 64
max_icon_size      = 64
frame_width        = 3
width              = (256, 512)
height             = (0,   512)
padding            = 12
horizontal_padding = 12
text_icon_padding  = 12

2. Catppuccin Mocha colors

[global]
frame_color = "#89B4FA"

[urgency_low]
background = "#1E1E2E"
foreground = "#CDD6F4"

[urgency_normal]
background = "#1E1E2E"
foreground = "#CDD6F4"

[urgency_critical]
background = "#1E1E2E"
foreground = "#CDD6F4"
frame_color = "#FAB387"

flameshot

1. Catppuccin Mocha colors

[General]
contrastUiColor=#1e1e2e
uiColor=#fab387

hypr

1. 1440p (120 DPI) sizes

hyprland.conf

monitor=,preferred,auto,1.25

2. Don't forget to set your wallpaper

hyprpaper.conf

preload   = ~/Pictures/Wallpapers/yourwallpaperhere.png
wallpaper = ,~/Pictures/Wallpapers/yourwallpaperhere.png

leftwm

1. 1440p (120 DPI) sizes

#![enable(implicit_some)]
(
border_width: 3,
margin: 3,
workspace_margin: 3,
)

2. Don't forget to set your wallpaper

themes/pixelsam/up

feh --bg-fill "$HOME/Pictures/Wallpapers/yourwallpaperhere.png"

polybar

1. 1440p (120 DPI) sizes

[bar/example]
dpi         = 120

font-0 = Iosevka Term SS05:size=12;4
font-1 = Iosevka Nerd Font Mono:size=18;5

[module/tray]
tray-size    = 24px
tray-spacing = 6px

2. Catppuccin Mocha colors

Some values are hardcoded for the network module so please use Find and Replace to replace these colors.

[colors]
background = #1E1E2E
background-alt = #313244
background-alt-brighter = #45475A
foreground = #CDD6F4
primary = #FAB387
secondary = #74C7EC
alert = #F38BA8
disabled = #6C7086

rofi

1. 1440p (120 DPI) sizes

configuration {
    dpi: 120;
}

window {
	width: 1024px;
	border: 2px;
}

element-icon {
	size: 48px;
}

2. Catppuccin Mocha colors

* {
    foreground: rgb ( 205, 214, 244 );
    separatorcolor: rgb ( 205, 214, 244 );
    selected-normal-foreground: rgb ( 245, 224, 220 );
    selected-normal-background: rgb ( 49, 50, 68 );
    active-foreground: rgb ( 250, 179, 135 );
    active-background: rgb ( 24, 24, 37 );
    selected-active-foreground: rgb ( 249, 226, 175 );
    selected-active-background: rgb ( 49, 50, 68 );
}

window {
    background-color: rgba ( 24, 24, 37, 0.95 );
}

waybar

1. 1440p (120 DPI) sizes

config

Use Find and Replace to replace these values.

  • line-height='1.15'
  • span font='30px' - I haven't determined the line height and rise value, help through a PR is welcome!
  • Tray icon size: 24, tray icon spacing: 6

style.css

#waybar {
    font-size: 20px;
}

/* Each module */
... {
    margin: 6px 0.5em;
}

#workspaces {
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 6px;
}

#workspaces button {
    padding-left: 0.375em;
    padding-right: 0.375em;
}