here you go
12
.bashrc
@ -11,20 +11,10 @@ alias bye='sudo shutdown -h now'
|
|||||||
alias loop='sudo reboot'
|
alias loop='sudo reboot'
|
||||||
alias h='dbus-launch Hyprland'
|
alias h='dbus-launch Hyprland'
|
||||||
alias fonts='fc-list -f "%{family}\n"'
|
alias fonts='fc-list -f "%{family}\n"'
|
||||||
alias hypr='cd ~/.config/hypr/'
|
|
||||||
alias tasks='bpytop'
|
alias tasks='bpytop'
|
||||||
alias viruscheck='sudo clamscan -r /'
|
|
||||||
alias Docs="cd ~/Documents && nvim"
|
alias Docs="cd ~/Documents && nvim"
|
||||||
alias Settings="cd ~/.config/hypr && nvim"
|
alias Settings="cd ~/.config/hypr && nvim"
|
||||||
alias spot="ncspot"
|
alias spot="ncspot"
|
||||||
export XDG_CURRENT_DESKTOP=Hyprland
|
|
||||||
export OZONE_PLATFORM=wayland
|
|
||||||
export ENABLE_FEATURES=UseOzonePlatform
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||||
PS1='[\u@\h \W]\$ '
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
export PATH=$PATH:/home/eli/.spicetify
|
|
||||||
|
|
||||||
# Created by `pipx` on 2025-01-06 05:43:18
|
|
||||||
export PATH="$PATH:/home/eli/.local/bin"
|
|
||||||
|
@ -5,7 +5,6 @@ general {
|
|||||||
lock_cmd = pidof hyprlock || hyprlock
|
lock_cmd = pidof hyprlock || hyprlock
|
||||||
ignore_dbus_inhibit = /opt/spotify/spotify
|
ignore_dbus_inhibit = /opt/spotify/spotify
|
||||||
}
|
}
|
||||||
|
|
||||||
listener {
|
listener {
|
||||||
timeout = 270
|
timeout = 270
|
||||||
on-timeout = source /home/eli/.cache/wal/colors.sh && notify-send "System" "You are about to be locked out!" -i $wallpaper
|
on-timeout = source /home/eli/.cache/wal/colors.sh && notify-send "System" "You are about to be locked out!" -i $wallpaper
|
||||||
|
@ -20,6 +20,7 @@ $menu = wofi --show drun
|
|||||||
exec-once = hypridle
|
exec-once = hypridle
|
||||||
exec-once = waybar
|
exec-once = waybar
|
||||||
exec-once = swww-daemon
|
exec-once = swww-daemon
|
||||||
|
exec-once = sudo powertop --auto-tune
|
||||||
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||||
exec-once = swaync && swaync-client -df
|
exec-once = swaync && swaync-client -df
|
||||||
#############################
|
#############################
|
||||||
@ -86,8 +87,8 @@ dwindle {
|
|||||||
preserve_split = true
|
preserve_split = true
|
||||||
}
|
}
|
||||||
misc {
|
misc {
|
||||||
force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers
|
force_default_wallpaper = 1 # Set to 0 or 1 to disable the anime mascot wallpapers
|
||||||
disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :(
|
disable_hyprland_logo = true # If true disables the random hyprland logo / anime girl background. :(
|
||||||
}
|
}
|
||||||
#############
|
#############
|
||||||
### INPUT ###
|
### INPUT ###
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
WALLPAPER_DIR="/home/eli/wallpapers/walls"
|
WALLPAPER_DIR="/home/eli/wallpapers/walls"
|
||||||
SELECTED_WALLPAPER=$(find "$WALLPAPER_DIR" -type f -exec basename {} \; | wofi -c ~/.config/wofi/config1 --show dmenu --prompt "Select Wallpaper:")
|
SELECTED_WALLPAPER=$(find "$WALLPAPER_DIR" -type f -exec basename {} \; | wofi -c ~/.config/wofi/config1 --show dmenu --prompt "Select Wallpaper:")
|
||||||
|
|
||||||
FULL_PATH=$(find "$WALLPAPER_DIR" -type f -name "$SELECTED_WALLPAPER")
|
FULL_PATH=$(find "$WALLPAPER_DIR" -type f -name "$SELECTED_WALLPAPER")
|
||||||
|
|
||||||
swww img "$FULL_PATH" --transition-type any --transition-fps 60 --transition-duration .5
|
swww img "$FULL_PATH" --transition-type any --transition-fps 60 --transition-duration .5
|
||||||
|
|
||||||
|
|
||||||
wal -i "$FULL_PATH" -n --cols16
|
wal -i "$FULL_PATH" -n --cols16
|
||||||
swaync-client --reload-css
|
swaync-client --reload-css
|
||||||
cat ~/.cache/wal/colors-kitty.conf > ~/.config/kitty/current-theme.conf
|
cat ~/.cache/wal/colors-kitty.conf > ~/.config/kitty/current-theme.conf
|
||||||
pywalfox update
|
pywalfox update
|
||||||
|
|
||||||
|
color1=$(awk 'match($0, /color2=\47(.*)\47/,a) { print a[1] }' ~/.cache/wal/colors.sh)
|
||||||
|
color2=$(awk 'match($0, /color3=\47(.*)\47/,a) { print a[1] }' ~/.cache/wal/colors.sh)
|
||||||
|
cava_config="$HOME/.config/cava/config"
|
||||||
|
sed -i "s/^gradient_color_1 = .*/gradient_color_1 = '$color1'/" $cava_config
|
||||||
|
sed -i "s/^gradient_color_2 = .*/gradient_color_2 = '$color2'/" $cava_config
|
||||||
|
pkill -USR2 cava || cava -p $cava_config
|
||||||
|
@ -1,30 +1,30 @@
|
|||||||
foreground #c2c1c1
|
foreground #bfc3c6
|
||||||
background #0E0A09
|
background #01111C
|
||||||
background_opacity 1.0
|
background_opacity 1.0
|
||||||
cursor #c2c1c1
|
cursor #bfc3c6
|
||||||
|
|
||||||
active_tab_foreground #0E0A09
|
active_tab_foreground #01111C
|
||||||
active_tab_background #c2c1c1
|
active_tab_background #bfc3c6
|
||||||
inactive_tab_foreground #c2c1c1
|
inactive_tab_foreground #bfc3c6
|
||||||
inactive_tab_background #0E0A09
|
inactive_tab_background #01111C
|
||||||
|
|
||||||
active_border_color #c2c1c1
|
active_border_color #bfc3c6
|
||||||
inactive_border_color #0E0A09
|
inactive_border_color #01111C
|
||||||
bell_border_color #754843
|
bell_border_color #39435e
|
||||||
|
|
||||||
color0 #0E0A09
|
color0 #01111C
|
||||||
color8 #6a5656
|
color8 #58646b
|
||||||
color1 #754843
|
color1 #39435e
|
||||||
color9 #9C605A
|
color9 #4C5A7E
|
||||||
color2 #9f5448
|
color2 #01506f
|
||||||
color10 #D57060
|
color10 #026B94
|
||||||
color3 #b17251
|
color3 #0b4a72
|
||||||
color11 #ED996D
|
color11 #0F6399
|
||||||
color4 #ae8a57
|
color4 #335090
|
||||||
color12 #E8B975
|
color12 #446BC0
|
||||||
color5 #6a5c62
|
color5 #036885
|
||||||
color13 #8E7B83
|
color13 #048BB2
|
||||||
color6 #a78e77
|
color6 #206b87
|
||||||
color14 #DFBE9F
|
color14 #2B8FB4
|
||||||
color7 #968b8b
|
color7 #8c9297
|
||||||
color15 #c2c1c1
|
color15 #bfc3c6
|
||||||
|
@ -2644,7 +2644,7 @@ include current-theme.conf
|
|||||||
#: }}}
|
#: }}}
|
||||||
|
|
||||||
# BEGIN_KITTY_FONTS
|
# BEGIN_KITTY_FONTS
|
||||||
font_family family='CodeNewRoman Nerd Font Mono' postscript_name=CodeNewRomanNFM
|
font_family family="Hurmit Nerd Font"
|
||||||
bold_font auto
|
bold_font auto
|
||||||
italic_font auto
|
italic_font auto
|
||||||
bold_italic_font auto
|
bold_italic_font auto
|
||||||
|
@ -2644,7 +2644,7 @@ include current-theme.conf
|
|||||||
#: }}}
|
#: }}}
|
||||||
|
|
||||||
# BEGIN_KITTY_FONTS
|
# BEGIN_KITTY_FONTS
|
||||||
font_family family="CodeNewRoman Nerd Font Mono"
|
font_family family='CodeNewRoman Nerd Font Mono' postscript_name=CodeNewRomanNFM
|
||||||
bold_font auto
|
bold_font auto
|
||||||
italic_font auto
|
italic_font auto
|
||||||
bold_italic_font auto
|
bold_italic_font auto
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
"on-click-right": "blueman-manager",
|
"on-click-right": "blueman-manager",
|
||||||
},
|
},
|
||||||
"battery": {
|
"battery": {
|
||||||
"interval":1,
|
"interval":10,
|
||||||
"states": {
|
"states": {
|
||||||
"good": 95,
|
"good": 95,
|
||||||
"warning": 30,
|
"warning": 30,
|
||||||
|
@ -58,18 +58,19 @@ tooltip {
|
|||||||
#workspaces button {
|
#workspaces button {
|
||||||
all:unset;
|
all:unset;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
color: rgba(0,0,0,0);
|
color: alpha(@color9,.4);
|
||||||
text-shadow: 0px 0px 1px rgba(0, 0, 0, .4);
|
transition: all .2s ease;
|
||||||
}
|
}
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
color:rgba(0,0,0,0);
|
color:rgba(0,0,0,0);
|
||||||
text-shadow: 0px 0px 1px rgba(0, 0, 0, .7);
|
border: none;
|
||||||
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||||
transition: all 1s ease;
|
transition: all 1s ease;
|
||||||
}
|
}
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color: @color9;
|
color: @color9;
|
||||||
border: none;
|
border: none;
|
||||||
transition: all 1s ease;
|
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||||
}
|
}
|
||||||
#workspaces button.empty {
|
#workspaces button.empty {
|
||||||
color: rgba(0,0,0,0);
|
color: rgba(0,0,0,0);
|
||||||
@ -85,7 +86,7 @@ tooltip {
|
|||||||
#workspaces button.empty.active {
|
#workspaces button.empty.active {
|
||||||
color: @color9;
|
color: @color9;
|
||||||
border: none;
|
border: none;
|
||||||
transition: all 1s ease;
|
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||||
}
|
}
|
||||||
#bluetooth{
|
#bluetooth{
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
[config]
|
[config]
|
||||||
allow_images=true
|
allow_images=true
|
||||||
show=drun
|
|
||||||
width=500
|
width=500
|
||||||
|
show=drun
|
||||||
|
prompt=Search
|
||||||
height=400
|
height=400
|
||||||
always_parse_args=true
|
always_parse_args=true
|
||||||
show_all=true
|
show_all=true
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
@import url('/home/eli/.cache/wal/colors-waybar.css');
|
@import url('/home/eli/.cache/wal/colors-waybar.css');
|
||||||
|
|
||||||
@define-color mauve @color9;
|
@define-color mauve @color9;
|
||||||
@define-color red @color9;
|
@define-color red @color9;
|
||||||
@define-color lavender @color7;
|
@define-color lavender @color7;
|
||||||
@define-color text @color7;
|
@define-color text @color7;
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% {
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: 'CodeNewRoman Nerd Font Mono', monospace;
|
font-family: 'CodeNewRoman Nerd Font Mono', monospace;
|
||||||
@ -21,22 +26,10 @@ window {
|
|||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-color: alpha(@background,.5);
|
background-color: alpha(@background,.5);
|
||||||
}
|
}
|
||||||
/* Slide In */
|
|
||||||
@keyframes slideIn {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inner Box */
|
|
||||||
#inner-box {
|
#inner-box {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border: none;
|
border: none;
|
||||||
animation: slideIn .5s ease-in-out;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#outer-box {
|
#outer-box {
|
||||||
@ -56,7 +49,6 @@ window {
|
|||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
color: @text;
|
color: @text;
|
||||||
animation: slideIn .5s ease-in-out;
|
|
||||||
box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
|
box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
|
||||||
border-radius:10;
|
border-radius:10;
|
||||||
}
|
}
|
||||||
@ -99,5 +91,4 @@ window {
|
|||||||
}
|
}
|
||||||
#entry:drop(active) {
|
#entry:drop(active) {
|
||||||
background-color: @lavender !important;
|
background-color: @lavender !important;
|
||||||
animation: fadeIn .5s ease-in-out;
|
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
BIN
wallpapers/walls/Aloe.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
wallpapers/walls/Code.jpg
Normal file
After Width: | Height: | Size: 1002 KiB |
BIN
wallpapers/walls/Ice.jpg
Normal file
After Width: | Height: | Size: 540 KiB |
BIN
wallpapers/walls/MistyTrees.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
wallpapers/walls/Street1.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
wallpapers/walls/Street2.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
wallpapers/walls/Sun.jpg
Normal file
After Width: | Height: | Size: 486 KiB |
BIN
wallpapers/walls/Sunset.jpg
Normal file
After Width: | Height: | Size: 849 KiB |
BIN
wallpapers/walls/TreeField.jpg
Normal file
After Width: | Height: | Size: 265 KiB |
BIN
wallpapers/walls/VallyCliff.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 974 KiB After Width: | Height: | Size: 974 KiB |
BIN
wallpapers/walls/WhiteMount2.jpg
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
wallpapers/walls/leaves.jpg
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
wallpapers/walls/stars.jpg
Normal file
After Width: | Height: | Size: 970 KiB |