Personal dotfiles. Install via curl -Lks https://bit.ly/2Jlynh5 | /bin/bash -x
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updates

james7132 1a8d9d32 8bc11579

+13 -163
+2
.config/git/config
··· 13 13 required = true 14 14 [gpg] 15 15 format = ssh 16 + [init] 17 + defaultBranch = main
+5
.config/helix/config.toml
··· 2 2 3 3 [editor] 4 4 line-number = "relative" 5 + mouse = false 5 6 true-color = true 6 7 bufferline = "multiple" 7 8 color-modes = true 8 9 10 + [editor.cursor-shape] 11 + insert = "bar" 12 + 9 13 [keys.normal] 10 14 ";" = "command_mode" 15 + "esc" = ["collapse_selection", "keep_primary_selection"]
+5
.config/niri/config.kdl
··· 259 259 } 260 260 261 261 window-rule { 262 + match app-id=r#"signal"# 263 + open-on-workspace "comms" 264 + } 265 + 266 + window-rule { 262 267 match app-id=r#"Thunderbird"# 263 268 open-on-workspace "comms" 264 269 }
-160
.config/vesktop/themes/custom.theme.css
··· 1 - /** 2 - * @name James's Custom Theme 3 - * @description Custom personal theme for Vencord. 4 - * @author james7132 5 - * @version 1.0.0 6 - * @authorI 151215593553395721 7 - * @authorLink https://no-bull.sh 8 - */ 9 - 10 - /* import theme modules */ 11 - @import url('https://refact0r.github.io/system24/build/system24.css'); 12 - /* block ads from Discord */ 13 - @import url('https://codeberg.org/ridge/Discord-Adblock/raw/branch/main/discord-adblock.css'); 14 - 15 - body { 16 - /* font, change to '' for default discord font */ 17 - --font: 'DM Mono'; /* change to '' for default discord font */ 18 - --code-font: 'DM Mono'; /* change to '' for default discord font */ 19 - font-weight: 500; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ 20 - letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ 21 - 22 - /* sizes */ 23 - --gap: 2px; /* spacing between panels */ 24 - --divider-thickness: 1px; /* thickness of unread messages divider and highlighted message borders */ 25 - --border-thickness: 1px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ 26 - --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ 27 - 28 - /* animation/transition options */ 29 - --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ 30 - --list-item-transition: 0.2s ease; /* transition for list items */ 31 - --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ 32 - 33 - /* top bar options */ 34 - --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ 35 - --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ 36 - --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ 37 - --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ 38 - 39 - /* window controls */ 40 - --custom-window-controls: off; /* off: default window controls, on: custom window controls */ 41 - --window-control-size: 14px; /* size of custom window controls */ 42 - 43 - /* dms button options */ 44 - --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ 45 - --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ 46 - --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ 47 - --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ 48 - --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ 49 - --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ 50 - --dms-background-image-url: url(''); /* url of the background image */ 51 - --dms-background-image-size: cover; /* size of the background image (css background-size property) */ 52 - --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ 53 - 54 - /* background image options */ 55 - --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ 56 - --background-image-url: url(''); /* url of the background image */ 57 - 58 - /* transparency/blur options */ 59 - /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ 60 - --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ 61 - --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ 62 - --panel-blur: off; /* off: no changes, on: blur the background of panels */ 63 - --blur-amount: 12px; /* amount of blur */ 64 - --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ 65 - 66 - /* other options */ 67 - --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ 68 - 69 - /* unrounding options */ 70 - --unrounding: off; /* off: default, on: remove rounded corners from panels */ 71 - 72 - /* styling options */ 73 - --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ 74 - --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ 75 - --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ 76 - 77 - /* panel labels */ 78 - --panel-labels: off; /* off: default, on: add labels to panels */ 79 - --label-color: var(--text-muted); /* color of labels */ 80 - --label-font-weight: 500; /* font weight of labels */ 81 - } 82 - 83 - /* color options */ 84 - :root { 85 - --colors: on; /* off: discord default colors, on: midnight custom colors */ 86 - 87 - /* text colors */ 88 - --text-0: var(--bg-4); /* text on colored elements */ 89 - --text-1: oklch(95% 0 0); /* other normally white text */ 90 - --text-2: oklch(85% 0 0); /* headings and important text */ 91 - --text-3: oklch(75% 0 0); /* normal text */ 92 - --text-4: oklch(60% 0 0); /* icon buttons and channels */ 93 - --text-5: oklch(40% 0 0); /* muted channels/chats and timestamps */ 94 - 95 - /* background and dark colors */ 96 - --bg-1: oklch(31% 0 0); /* dark buttons when clicked */ 97 - --bg-2: oklch(27% 0 0); /* dark buttons */ 98 - --bg-3: oklch(23% 0 0); /* spacing, secondary elements */ 99 - --bg-4: oklch(19% 0 0); /* main background color */ 100 - --hover: oklch(54% 0 0 / 0.1); /* channels and buttons when hovered */ 101 - --active: oklch(54% 0 0 / 0.2); /* channels and buttons when clicked or selected */ 102 - --active-2: oklch(54% 0 0 / 0.3); /* extra state for transparent buttons */ 103 - --message-hover: var(--hover); /* messages when hovered */ 104 - 105 - /* accent colors */ 106 - --accent-1: var(--blue-1); /* links and other accent text */ 107 - --accent-2: var(--blue-2); /* small accent elements */ 108 - --accent-3: var(--blue-3); /* accent buttons */ 109 - --accent-4: var(--blue-4); /* accent buttons when hovered */ 110 - --accent-5: var(--blue-5); /* accent buttons when clicked */ 111 - --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ 112 - --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ 113 - --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ 114 - --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ 115 - --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ 116 - 117 - /* status indicator colors */ 118 - --online: var(--green-2); /* change to #40a258 for default */ 119 - --dnd: var(--red-2); /* change to #d83a41 for default */ 120 - --idle: var(--yellow-2); /* change to #cc954c for default */ 121 - --streaming: var(--blue-2); /* change to ##9147ff for default */ 122 - --offline: var(--text-4); /* change to #82838b for default offline color */ 123 - 124 - /* border colors */ 125 - --border-light: var(--hover); /* general light border color */ 126 - --border: var(--active); /* general normal border color */ 127 - --border-hover: var(--accent-2); /* border color of panels when hovered */ 128 - --button-border: hsl(220, 0%, 100%, 0.1); /* neutral border color of buttons */ 129 - 130 - /* base colors */ 131 - --red-1: oklch(75% 0.13 0); 132 - --red-2: oklch(70% 0.13 0); 133 - --red-3: oklch(65% 0.13 0); 134 - --red-4: oklch(60% 0.13 0); 135 - --red-5: oklch(55% 0.13 0); 136 - 137 - --green-1: oklch(75% 0.12 170); 138 - --green-2: oklch(70% 0.12 170); 139 - --green-3: oklch(65% 0.12 170); 140 - --green-4: oklch(60% 0.12 170); 141 - --green-5: oklch(55% 0.12 160); 142 - 143 - --blue-1: oklch(75% 0.11 215); 144 - --blue-2: oklch(70% 0.11 215); 145 - --blue-3: oklch(65% 0.11 215); 146 - --blue-4: oklch(60% 0.11 215); 147 - --blue-5: oklch(55% 0.11 215); 148 - 149 - --yellow-1: oklch(80% 0.12 90); 150 - --yellow-2: oklch(75% 0.12 90); 151 - --yellow-3: oklch(70% 0.12 90); 152 - --yellow-4: oklch(65% 0.12 90); 153 - --yellow-5: oklch(60% 0.12 90); 154 - 155 - --purple-1: oklch(75% 0.12 310); 156 - --purple-2: oklch(70% 0.12 310); 157 - --purple-3: oklch(65% 0.12 310); 158 - --purple-4: oklch(60% 0.12 310); 159 - --purple-5: oklch(55% 0.12 310); 160 - }
+1 -1
.config/vim/vimrc
··· 67 67 set term=$TERM " Set the terminal used 68 68 set noerrorbells " Disable error sounds 69 69 set visualbell " Show errors visually instead 70 - set shell=/bin/zsh " Set all shell executions to run in bash 70 + set shell=/usr/bin/fish " Set all shell executions to run in bash 71 71 set laststatus=2 " Always show statusline 72 72 73 73 " Save all temporary files to a defined location: ~/.vim-tmp
-2
.config/waybar/config.jsonc
··· 3 3 "layer": "top", // Waybar at top layer 4 4 "position": "top", // Waybar position (top|bottom|left|right) 5 5 "height": 35, // Waybar height (to be removed for auto height) 6 - // "width": 1280, // Waybar width 7 6 "spacing": 20, // Gaps between modules (4px) 8 7 "reload_style_on_change": true, 9 - // Choose the order of the modules 10 8 "modules-left": [ 11 9 "niri/workspaces", 12 10 "niri/window",