add wallpapers

This commit is contained in:
nub31
2025-05-10 22:58:13 +02:00
parent 20253164cb
commit 97d3e161b6
20 changed files with 37 additions and 198 deletions

View File

@@ -1,6 +1,6 @@
[window]
opacity = 0.95
opacity = 1
padding.x = 10
padding.y = 10
@@ -15,4 +15,4 @@ bold_italic.family = "JetBrainsMono Nerd Font"
size = 13.0
[colors.primary]
background = "#191414"
background = "#151515"

View File

@@ -1,22 +1,22 @@
# https://wiki.hyprland.org/Configuring/Binds/
$terminal = alacritty
$fileManager = thunar
$files = thunar
$menu = rofi -show drun -config ~/.config/rofi/config.rasi
$browser = brave
$code = code
$lock = hyprlock
$colorPicker = hyprpicker -a -f hex -r -n -q
$color_picker = hyprpicker -a -f hex -r -n -q
$mainMod = SUPER
# Programs
bind = $mainMod, E, exec, $fileManager
bind = $mainMod, E, exec, $files
bind = $mainMod, R, exec, $menu
bind = $mainMod, B, exec, $browser
bind = $mainMod, L, exec, $lock
bind = $mainMod, C, exec, $code
bind = $mainMod SHIFT, C, exec, $colorPicker
bind = $mainMod SHIFT, C, exec, $color_picker
bind = $mainMod, RETURN, exec, $terminal
bind = $mainMod SHIFT, E, exit

View File

@@ -5,11 +5,14 @@ source = input.conf
source = monitors.conf
source = rules.conf
$scritps = ~/.config/hypr/scripts
exec-once = nm-applet &
exec-once = waybar &
exec-once = hyprpm reload -n
exec-once = hyprpaper
exec-once = hypridle
exec-once = hyprpaper
exec-once = sleep 1 && $scritps/random_wallpaper.sh
env = XCURSOR_SIZE,24
env = HYPRCURSOR_SIZE,24

View File

@@ -1,20 +1,17 @@
background {
monitor =
# path = ~/wallpapers/japan-street-Dark.png
color = rgba(25, 20, 20, 1.0)
blur_passes = 2
color = rgb(21, 21, 21)
}
input-field {
monitor =
size = 10%, 5%
outline_thickness = 4
inner_color = rgba(255, 255, 255, 1) # white fill
shadow_passes = 6 # shadow
inner_color = rgba(240, 240, 240)
shadow_passes = 6
outer_color=000000
check_color=000000
fail_color=#ff
outer_color = rgba(0, 0, 0)
check_color = rgba(0, 0, 0)
fail_color = rgba(255, 0, 0)
font_color = rgb(30, 30, 30)
fade_on_empty = true

View File

@@ -1,2 +0,0 @@
preload = ~/wallpapers/japan-street-Dark.png
wallpaper = , ~/wallpapers/japan-street-Dark.png

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
WALLPAPER_DIR="$HOME/wallpapers/"
CURRENT_WALL=$(hyprctl hyprpaper listloaded)
# Get a random wallpaper that is not the current one
WALLPAPER=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALL")" | shuf -n 1)
# Apply the selected wallpaper
hyprctl hyprpaper reload ,"$WALLPAPER"

View File

@@ -1,9 +1 @@
@theme "./themes/onedark/style.rasi"
configuration {
font: "JetBrainsMono Nerd Font 12";
}
* {
color1: #191414;
}
@theme "./minimal/style.rasi"

View File

@@ -1,6 +1,6 @@
/***************************************************
* Name: Name Colors
* Author: Matheus Silva (https://github.com/Heus-Sueh)
* Author: Matheus Silva, Modified by nub31
* Date: 2024-09-28
***************************************************/
@@ -70,4 +70,4 @@
txt: @text-color;
border: @border-color;
separator: @separator-color;
}
}

View File

@@ -1,6 +1,6 @@
/***************************************************
* Name: Minimal
* Author: Matheus Silva (https://github.com/Heus-Sueh)
* Author: Matheus Silva, Modified by nub31
* Date: 2024-09-28
***************************************************/
@@ -9,7 +9,7 @@
/* Comment */
configuration {
font: "Iosevka Nerd Font Medium 12";
font: "JetBrainsMono Nerd Font Medium 12";
drun {
display-name: "[^.^]";
@@ -39,6 +39,7 @@ configuration {
window {
transparency: "real";
background-color: @bg;
border-radius: 8px;
}
mainbox {
@@ -74,5 +75,4 @@ element-text {
element-text selected {
text-color: @accent;
}
}

View File

@@ -1,74 +0,0 @@
/***************************************************
* Name: Name Colors
* Author: Matheus Silva (https://github.com/Heus-Sueh)
* Date: 2024-09-28
***************************************************/
/* Comment */
* {
/***** [ Custom Colors ] *****/
color1: #282C34;
color2: #ABB2BF;
blue: #61AFEF;
blue-alt: #61AFEF15;
red: #E06C75;
red-alt: #E06C7515;
/***** [ Elements ] *****/
background: @color1;
background-alt: white;
background-selected: @red-alt;
background-active: white;
background-urgent: white;
foreground: @color2;
foreground-alt: white;
foreground-selected: @red;
foreground-active: white;
foreground-urgent: white;
background-color: @color1;
text-color: @color2;
border-color: white;
separator-color: white;
placeholder-color: white; /* textbox placeholder */
handle-color: transparent; /* scrollbar handle */
highlight: bold white;
normal: white;
selected: @red;
active: white;
urgent: white;
entry-bg: @blue-alt;
entry-fg: @blue;
/***** [ Aliases ] *****/
/* DO NOT TOUCH HERE */
bg: @background;
bg-alt: @background-alt;
bg-sel: @background-selected;
bg-act: @background-active;
bg-urg: @background-urgent;
fg: @foreground;
fg-alt: @foreground-alt;
fg-sel: @foreground-selected;
fg-act: @foreground-active;
fg-urg: @foreground-urgent;
sel: @selected;
act: @active;
urg: @urgent;
text: @text-color;
txt: @text-color;
border: @border-color;
separator: @separator-color;
placeholder: @placeholder-color;
handle: @handle-color;
}

View File

@@ -1,87 +0,0 @@
/***************************************************
* Name: Name
* Author: Matheus Silva (https://github.com/Heus-Sueh)
* Date: 2024-09-28
***************************************************/
@import "colors.rasi"
/* Comment */
configuration {
font: "Iosevka Nerd Font Medium 12";
drun {
display-name: "";
}
run {
display-name: "";
}
window {
display-name: "";
}
timeout {
delay: 10;
action: "kb-cancel";
}
}
* {
border: 0;
margin: 0;
padding: 0;
spacing: 0;
}
window {
border: 2px;
border-color: @blue-alt;
border-radius: 6px;
padding: 6px;
transparency: "real";
}
mainbox {
children: [inputbar, listview];
}
inputbar {
border: 0 0 0 2px;
border-color: @blue;
border-radius: 6px;
children: [entry];
margin: 0 0 6px 0;
}
entry {
background-color: @entry-bg;
padding: 10px;
text-color: @entry-fg;
}
listview {
lines: 10;
}
element {
border: 0 0 0 2px;
border-color: @bg;
children: [element-text];
}
element selected {
border-color: @sel;
border-radius: 6px;
}
element-text {
padding: 10px;
}
element-text selected {
background-color: @bg-sel;
text-color: @fg-sel;
}

View File

@@ -5,8 +5,8 @@
}
#waybar {
background-color: #191414;
color: #ABB2BF;
background-color: #151515;
color: #FFFFFF;
}
button {
@@ -37,7 +37,7 @@ button:hover {
}
#workspaces button.active {
border-bottom: 2px solid #ABB2BF;
border-bottom: 2px solid #FFFFFF;
}
#tray {
@@ -64,7 +64,7 @@ button:hover {
}
#custom-lock {
border-bottom: 2px solid #ABB2BF;
border-bottom: 2px solid #FFFFFF;
transition: all 100ms ease-in-out;
padding-right: 16px;
padding-left: 12px;

BIN
wallpapers/charging.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 MiB

BIN
wallpapers/charging3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 MiB

BIN
wallpapers/miku-rain.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 MiB

BIN
wallpapers/shestoocool.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB