diff --git a/bash/.bashrc b/bash/.bashrc index 84994df..d5156e5 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -2,6 +2,7 @@ # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples +export PATH="$HOME/.cargo/bin:$PATH" # If not running interactively, don't do anything case $- in *i*) ;; diff --git a/hypr/.config/hypr/assets/background.png b/hypr/.config/hypr/assets/background.png new file mode 100644 index 0000000..e332fab Binary files /dev/null and b/hypr/.config/hypr/assets/background.png differ diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index f3639c9..2a48114 100644 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -17,7 +17,6 @@ # You can split this configuration into multiple files # Create your files separately and then link them to this file like this: # source = ~/.config/hypr/myColors.conf -source = ~/.config/rider-palette/palette.hyprland.conf ################ @@ -37,7 +36,7 @@ monitor=DP-3,1920x1080@60, 3440x1200,1 $terminal = alacritty $fileManager = thunar $navigator = firefox -$menu = walker +$menu = wofi --show drun ################# @@ -50,7 +49,6 @@ $menu = walker # exec-once = $terminal # exec-once = nm-applet & exec-once = waybar & hyprpaper & mako & hypridle -exec-once = walker --gapplication-service ############################# @@ -80,8 +78,8 @@ general { border_size = 1 # https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors - col.active_border = $func - col.inactive_border = $border + col.active_border = rgba(33ccffff) + col.inactive_border = rgba(595959ff) # Set to true enable resizing windows by clicking and dragging on borders and gaps resize_on_border = false @@ -194,7 +192,6 @@ bind = $mainMod, E, exec, $fileManager bind = $mainMod, N, exec, $navigator bind = $mainMod, V, togglefloating bind = $mainMod, F, fullscreen bind = $mainMod, R, exec, $menu -bind = $mainMod ALT, SPACE, exec, $menu bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, S, togglesplit, # dwindle bind = $mainMod, Q, exec, hyprlock diff --git a/hypr/.config/hypr/hyprpaper.conf b/hypr/.config/hypr/hyprpaper.conf index a7a4b17..c4dfccd 100644 --- a/hypr/.config/hypr/hyprpaper.conf +++ b/hypr/.config/hypr/hyprpaper.conf @@ -1,14 +1,13 @@ -preload = ~/Pictures/background.png +preload = ~/repos/dotfiles/hypr/.config/hypr/assets/background.png + +splash = false #set the default wallpaper(s) seen on initial workspace(s) --depending on the number of monitors used -wallpaper = DP-1,~/Pictures/background.png -wallpaper = DP-2,~/Pictures/background.png -wallpaper = DP-3,~/Pictures/background.png +wallpaper { + monitor = + path = ~/repos/dotfiles/hypr/.config/hypr/assets/background.png +} #enable splash text rendering over the wallpaper -#splash = true - #fully disable ipc # ipc = off - - diff --git a/waybar/.config/waybar/config.jsonc b/waybar/.config/waybar/config.jsonc index 79e59fa..f52b8d3 100644 --- a/waybar/.config/waybar/config.jsonc +++ b/waybar/.config/waybar/config.jsonc @@ -91,7 +91,7 @@ } }, "clock": { - "format": "󰃰 {:%a %d %b} 󰥔 {:%H:%M}", + "format": "{:%R %a %d %b}", "rotate": 0, "on-click": "walker", "tooltip-format": "{calendar}", diff --git a/waybar/.config/waybar/style.css b/waybar/.config/waybar/style.css index cdc6f4c..7ded83f 100644 --- a/waybar/.config/waybar/style.css +++ b/waybar/.config/waybar/style.css @@ -46,9 +46,10 @@ tooltip { #memory, #tray, #custom-power { - background: @background; - border: 1px solid alpha(@accent-alt, 0.22); + background: alpha(@background, 0.56); + border: 1px solid alpha(@foreground, 0.14); border-radius: 14px; + box-shadow: 0 8px 24px alpha(@background, 0.22); margin: 0 5px; padding: 0 12px; min-height: 34px; @@ -141,7 +142,7 @@ tooltip { #custom-power:hover, #clock:hover { box-shadow: none; - background: @background-alt; + background: alpha(@background-alt, 0.68); } #custom-launcher:hover, diff --git a/zsh/.zshrc b/zsh/.zshrc index 518d92d..f91d1df 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -8,6 +8,9 @@ fi # If you come from bash you might have to change your $PATH. # export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH +# Export path to include Cargo +export PATH="$HOME/.cargo/bin:$PATH" + # Path to your Oh My Zsh installation. export ZSH="$HOME/.oh-my-zsh" @@ -130,3 +133,4 @@ fi if ls --color=auto -d . >/dev/null 2>&1; then alias ls='ls --color=auto' fi +export PATH="$HOME/go/bin:$HOME/.cargo/bin:$PATH"