Compare commits

...

6 Commits

Author SHA1 Message Date
nnduc
df97a3cfc3 fix wallpaper 2025-08-22 12:30:38 +07:00
nnduc
7303d805ef change volume step 2025-08-20 10:39:44 +07:00
nnduc
1521e5ddf2 up 2025-08-12 00:27:45 +07:00
ebd0e1bffa Merge pull request 'clean a bit' (#1) from main into 2025
Reviewed-on: #1
2025-08-04 03:15:28 +00:00
06805d6245 Merge branch '2025' into main 2025-08-04 03:15:18 +00:00
nnduc
94af5b761a fix some hovering effects 2025-08-01 14:57:13 +07:00
3 changed files with 16 additions and 7 deletions

View File

@@ -51,8 +51,8 @@ exec --no-startup-id gentoo-pipewire-launcher restart &
set $refresh_i3status killall -SIGUSR1 i3status
# Software volume should not be lower than 80% unless you want to lose dynamic range.
set $lower-volume wpctl set-volume @DEFAULT_SINK@ 0.02- && $refresh_i3status
set $raise-volume wpctl set-volume @DEFAULT_SINK@ 0.02+ --limit 1 && $refresh_i3status
set $lower-volume wpctl set-volume @DEFAULT_SINK@ 0.01- && $refresh_i3status
set $raise-volume wpctl set-volume @DEFAULT_SINK@ 0.01+ --limit 1 && $refresh_i3status
set $mute-sink wpctl set-mute @DEFAULT_SINK@ toggle && $refresh_i3status
set $mute-source wpctl set-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status

View File

@@ -24,7 +24,7 @@ set $menu rofi -show drun
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
set $bg /data/sync/images/wallpapers/0002.png
set $bg /data/sync/images/wallpapers/0002.jpg
set $screenlock 'swaylock -i $bg'
set $images $(xdg-user-dir PICTURES)/$(date +'%s_grim.png')
#
@@ -87,14 +87,14 @@ exec --no-startup-id xset m 1/1 0
exec --no-startup-id /usr/lib/pam_kwallet_init
set $lower-volume wpctl set-volume @DEFAULT_SINK@ 0.02-
set $raise-volume wpctl set-volume @DEFAULT_SINK@ 0.02+ --limit 1
set $lower-volume wpctl set-volume @DEFAULT_SINK@ 0.01-
set $raise-volume wpctl set-volume @DEFAULT_SINK@ 0.01+ --limit 1
set $mute-sink wpctl set-mute @DEFAULT_SINK@ toggle
set $mute-source wpctl set-mute @DEFAULT_SOURCE@ toggle
bindsym XF86AudioRaiseVolume exec --no-startup-id raise-volume
bindsym XF86AudioLowerVolume exec --no-startup-id lower-volume
bindsym XF86AudioRaiseVolume exec --no-startup-id $raise-volume
bindsym XF86AudioLowerVolume exec --no-startup-id $lower-volume
bindsym XF86AudioMute exec --no-startup-id $mute-sink
bindsym XF86AudioMicMute exec --no-startup-id $mute-source
bindsym $mod+slash exec --no-startup-id wpctl $mute-sink

View File

@@ -83,6 +83,15 @@ tooltip label{
background: @bg_hover;
color: @content_main;
}
button {
border: none;
border-radius: 0;
}
button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: inherit;
}
#taskbar {
}