Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexvZyl committed Sep 26, 2024
1 parent 6bdbaab commit b4d0fe5
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 17 deletions.
2 changes: 0 additions & 2 deletions .config/VSCodium/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
},
"terminal.integrated.tabs.enabled": false,
"editor.scrollbar.horizontalScrollbarSize": 0,
"workbench.colorTheme": "Tokyo Night",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"haskell.manageHLS": "GHCup",
Expand All @@ -107,5 +106,4 @@
],
"cmake.showOptionsMovedNotification": false,
"terminal.integrated.gpuAcceleration": "off",
"workbench.activityBar.location": "hidden",
}
4 changes: 2 additions & 2 deletions .config/btop/btop.conf
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ graph_symbol_net = "default"
graph_symbol_proc = "default"

#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
shown_boxes = "cpu mem net proc"
shown_boxes = "cpu net proc"

#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
update_ms = 100
update_ms = 200

#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
Expand Down
9 changes: 5 additions & 4 deletions .config/cava/config
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,11 @@ source = auto
# background must also be defined in hex or remain commented out. 1 = on, 0 = off.
# You can define as many as 8 different colors. They range from bottom to top of screen
gradient = 1
gradient_count = 3
gradient_color_1 = "#ECEFF4"
gradient_color_2 = "#8FBCBB"
gradient_color_3 = "#5E81AC"
gradient_count = 4
gradient_color_1 = "#e0e2ea"
gradient_color_2 = "#8cf8f7"
gradient_color_3 = "#87CEFA"
gradient_color_4 = "#FCE094"

[smoothing]

Expand Down
4 changes: 2 additions & 2 deletions .config/dunst/dunstrc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# Draw a line of "separator_height" pixel height between two
# notifications.
# Set to 0 to disable.
separator_height = 2
separator_height = 1

# Padding between text and separator.
padding = 11
Expand All @@ -95,7 +95,7 @@
# * foreground: use the same color as the foreground;
# * frame: use the same color as the frame;
# * anything else will be interpreted as a X color.
separator_color = "#1a1b26"
separator_color = "#FFFFFF"

# Sort messages by urgency.
sort = yes
Expand Down
2 changes: 1 addition & 1 deletion .config/polybar/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fixed-center = true

; Fonts.
font-0 = JetBrainsMono Nerd Font:pixelsize=10:weight=bold;3
font-1 = JetBrainsMono Nerd Font:pixelsize=13:antialias=true;3
font-1 = JetBrainsMono Nerd Font:pixelsize=11:antialias=true;3
font-2 = JetBrainsMono Nerd Font:pixelsize=14:weight=bold:antialias=false;4
font-3 = JetBrainsMono Nerd Font:pixelsize=15:weight=bold;4
font-4 = JetBrainsMono Nerd Font:pixelsize=5:weight=bold;3
Expand Down
8 changes: 5 additions & 3 deletions .config/starship.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ add_newline = false

[directory]
style = "fg:white"
format = " [$path]($style)"
format = " 󰉋 [$path]($style)"
truncation_length = 5
truncate_to_repo = true
truncation_symbol = "󰉒 "
repo_root_format = " 󰉒 $repo_root"
before_repo_root_style = ""
repo_root_style = ""

[time]
disabled = false
Expand All @@ -21,7 +23,7 @@ style = "fg:white"
format = '[$time](fg:bright-black)($style)'

[character]
success_symbol = '[ ](bold green)'
success_symbol = '[ ](bold cyan)'
error_symbol = '[ ](bold red)'

[git_branch]
Expand Down
1 change: 1 addition & 0 deletions .config/tmux/utils/create_workspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ tmux new-window -c "./" -n "shell" "fish"
tmux select-window -t "$CURRENT_WINDOW"
tmux swap-window -t +1
tmux next-window
tmux select-window -t 1
nvim .
4 changes: 2 additions & 2 deletions .config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ config.colors = {
'#FCE094',
'#87CEFA',
'#ffcaff',
"#b0e2ff",
"#8cf8f7",
'#e0e2ea',
},
brights = {
Expand All @@ -67,7 +67,7 @@ config.colors = {
'#FCE094',
'#87CEFA',
'#ffcaff',
'#E0FFFF',
"#8cf8f7",
'#e0e2ea',
},
}
Expand Down

0 comments on commit b4d0fe5

Please sign in to comment.