More tweaks
This commit is contained in:
parent
b94761fb71
commit
b25473b488
8 changed files with 13 additions and 25 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
.nvimlog
|
||||
spotifyd/spotifyd.conf
|
|
@ -111,7 +111,7 @@ label-muted = "muted"
|
|||
click-right = exec pavucontrol
|
||||
label-muted-foreground = ${colors.disabled}
|
||||
label-padding = 1
|
||||
format-volume-underline = #00aae0
|
||||
format-volume-underline = #3c4812
|
||||
format-muted-underline = ${colors.alert}
|
||||
[module/xkeyboard]
|
||||
type = internal/xkeyboard
|
||||
|
|
|
@ -26,7 +26,7 @@ mainbox {
|
|||
padding: 15px;
|
||||
border-color: @bg3;
|
||||
border: 0px;
|
||||
border-radius: 2px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
configuration {
|
||||
modi: "window,run,ssh,drun";
|
||||
font: "Inter Medium 12";
|
||||
font: "Inter Medium 11";
|
||||
/* location: 0;*/
|
||||
/* yoffset: 0;*/
|
||||
/* xoffset: 0;*/
|
||||
|
@ -14,7 +14,7 @@ show-icons: true;
|
|||
/* run-shell-command: "{terminal} -e {cmd}";*/
|
||||
/* window-command: "wmctrl -i -R {window}";*/
|
||||
/* window-match-fields: "all";*/
|
||||
icon-theme: "Breeze" ;
|
||||
icon-theme: "breeze-dark" ;
|
||||
/* drun-match-fields: "name,generic,exec,categories,keywords";*/
|
||||
/* drun-categories: ;*/
|
||||
/* drun-show-actions: false;*/
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
"editor.smoothScrolling": true,
|
||||
"editor.formatOnSave": true,
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"terminal.integrated.fontFamily": "Fira Code",
|
||||
"terminal.integrated.fontFamily": "Liga Liberation Mono",
|
||||
"terminal.integrated.fontSize": 11,
|
||||
"terminal.integrated.fontWeight": "400",
|
||||
"terminal.integrated.tabs.enabled": true,
|
||||
"debug.console.fontFamily": "Fira Code",
|
||||
"debug.console.fontFamily": "Liga Liberation Mono",
|
||||
"debug.console.fontSize": 12,
|
||||
"explorer.confirmDelete": false,
|
||||
"workbench.list.smoothScrolling": true,
|
||||
|
@ -38,6 +38,7 @@
|
|||
"opacity": 50,
|
||||
"iconColour": "#e08009"
|
||||
},
|
||||
"markdown.styles": ["markdown-styles.css"],
|
||||
"markdown-preview-github-styles.colorTheme": "light",
|
||||
"liveServer.settings.donotShowInfoMsg": true,
|
||||
"explorer.confirmDragAndDrop": false,
|
||||
|
@ -49,7 +50,7 @@
|
|||
{
|
||||
"scope": "comment",
|
||||
"settings": {
|
||||
"fontStyle": "italic"
|
||||
"fontStyle": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
cursor.theme: Breeze_Default
|
||||
Xcursor.size: 6
|
||||
Xcursor.size: 3
|
||||
|
|
18
x/xinitrc
18
x/xinitrc
|
@ -8,15 +8,7 @@ sysmodmap=/etc/X11/xinit/.Xmodmap
|
|||
# merge in defaults and keymaps
|
||||
|
||||
if [ -f $sysresources ]; then
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
xrdb -merge $sysresources
|
||||
|
||||
fi
|
||||
|
||||
if [ -f $sysmodmap ]; then
|
||||
|
@ -24,13 +16,6 @@ if [ -f $sysmodmap ]; then
|
|||
fi
|
||||
|
||||
if [ -f "$userresources" ]; then
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
xrdb -merge "$userresources"
|
||||
|
||||
fi
|
||||
|
@ -77,9 +62,8 @@ setxkbmap gb
|
|||
|
||||
# Set custom keybindings
|
||||
xmodmap ~/.Xmodmap
|
||||
|
||||
# Set background
|
||||
feh --bg-fill /home/thomas/wallpapers/arpanet_wallpaper/svg/green.svg
|
||||
feh --bg-fill /home/thomas/wallpapers/arpanet/svg/blue.svg
|
||||
|
||||
# Start i3 window manager
|
||||
exec i3
|
||||
|
|
|
@ -11,6 +11,7 @@ alias vim="nvim"
|
|||
alias cat="bat"
|
||||
alias grep="rg"
|
||||
alias chrome="google-chrome-stable"
|
||||
alias spot="ncspot"
|
||||
# Set properties based on OS
|
||||
|
||||
case "$OSTYPE" in
|
||||
|
@ -43,3 +44,4 @@ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || pr
|
|||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
|
||||
export LC_ALL=en_GB.UTF-8
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
|
Loading…
Add table
Reference in a new issue