I'm going through changeees
This commit is contained in:
parent
b93bace9de
commit
36dd936193
5 changed files with 39 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
|||
include ./theme.conf
|
||||
font_family LigaLiberationMono
|
||||
font_size 10.5
|
||||
font_size 10
|
||||
window_padding_width 12
|
||||
|
|
|
@ -61,7 +61,7 @@ textbox {
|
|||
listview {
|
||||
background-color: transparent;
|
||||
margin: 12px 0 0;
|
||||
lines: 3;
|
||||
lines: 8;
|
||||
columns: 1;
|
||||
fixed-height: false;
|
||||
}
|
||||
|
|
35
vscode/markdown-styles.css
Normal file
35
vscode/markdown-styles.css
Normal file
|
@ -0,0 +1,35 @@
|
|||
h1, h2, h3, h4, h5, h6, p {
|
||||
font-family: 'Inter';
|
||||
}
|
||||
|
||||
|
||||
h1 {
|
||||
|
||||
font-size: 24px !important;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 20px !important;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 18px !important;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 16px !important;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
|
||||
|
||||
p, ul, li, dl, dd, dt {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
font-family: 'LigaLiberationMono';
|
||||
font-size: 12px !important;
|
||||
}
|
|
@ -30,14 +30,6 @@
|
|||
"vim.useSystemClipboard": true,
|
||||
"vim.highlightedyank.enable": true,
|
||||
"vim.highlightedyank.color": "#18e00040",
|
||||
"todo-tree.highlights.defaultHighlight": {
|
||||
"icon": "flame",
|
||||
"type": "text",
|
||||
"foreground": "#e0800980",
|
||||
"gutterIcon": true,
|
||||
"opacity": 50,
|
||||
"iconColour": "#e08009"
|
||||
},
|
||||
"markdown.styles": ["markdown-styles.css"],
|
||||
"markdown-preview-github-styles.colorTheme": "light",
|
||||
"liveServer.settings.donotShowInfoMsg": true,
|
||||
|
|
|
@ -51,7 +51,7 @@ if [[ "$(xrandr | awk '/^VGA/ { print $2 }')" == "connected" ]]; then
|
|||
elif [[ "$(xrandr | awk '/^DP1/ { print $2 }')" == "connected" ]];then
|
||||
xrandr --output DP1 --primary --above eDP1
|
||||
elif [[ "$(xrandr | awk '/^HDMI1/ { print $2 }')" == "connected" ]];then
|
||||
xrandr --output HDMI1 --primary --above eDP1
|
||||
xrandr --output HDMI1 --above eDP1
|
||||
|
||||
else :
|
||||
fi
|
||||
|
@ -63,7 +63,7 @@ setxkbmap gb
|
|||
# Set custom keybindings
|
||||
xmodmap ~/.Xmodmap
|
||||
# Set background
|
||||
feh --bg-fill /home/thomas/wallpapers/arpanet/svg/blue.svg
|
||||
feh --bg-fill /home/thomas/wallpapers/arpanet/svg/green.svg
|
||||
|
||||
# Start i3 window manager
|
||||
exec i3
|
||||
|
|
Loading…
Add table
Reference in a new issue