Compare commits
5 Commits
bc35c52251
...
laptop
Author | SHA1 | Date | |
---|---|---|---|
6b93a8734e | |||
1f3cd7893e | |||
2f41a215f4 | |||
c2d973c6da | |||
e99a958d61 |
@ -64,12 +64,14 @@ env = HYPRCURSOR_SIZE,24
|
||||
env = __NV_DISABLE_EXPLICIT_SYNC,1
|
||||
|
||||
exec = gsettings set org.gnome.desktop.interface gtk-theme "catppuccin-mocha-blue-standard+default" # for GTK3 apps
|
||||
exec = gsettings set org.gnome.desktop.interface color-scheme "catppuccin-mocha-blue-standard+default" # for GTK4 apps
|
||||
exec = gsettings set org.gnome.desktop.interface color-scheme "prefer-dark" # for GTK4 apps
|
||||
|
||||
env = QT_QPA_PLATFORMTHEME,qt6ct # for Qt apps
|
||||
|
||||
env = QT_QPA_PLATFORM,wayland
|
||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||||
|
||||
exec = XDG_MENU_PREFIX=arch- kbuildsycoca6
|
||||
exec-once = XDG_MENU_PREFIX=arch- kbuildsycoca6
|
||||
|
||||
# Default starts
|
||||
exec-once = [workspace 9 silent] keepassxc
|
||||
@ -305,6 +307,8 @@ bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
|
||||
bindl = , switch:Lid Switch, exec, hyprlock
|
||||
|
||||
##############################
|
||||
### WINDOWS AND WORKSPACES ###
|
||||
##############################
|
||||
|
@ -1,2 +1,2 @@
|
||||
preload = ~/arch.png
|
||||
wallpaper = ,~/arch.png
|
||||
preload = ~/arch.jpg
|
||||
wallpaper = ,~/arch.jpg
|
||||
|
@ -7,14 +7,14 @@
|
||||
"modules-center": ["clock", "custom/music"],
|
||||
"modules-right": ["pulseaudio", "backlight", "battery", "tray", "custom/lock", "custom/power"],
|
||||
"hyprland/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"disable-scroll": true
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
"icon-size": 36,
|
||||
"spacing": 16
|
||||
},
|
||||
"custom/music": {
|
||||
"format": " {}",
|
||||
"format": "♫ {}",
|
||||
"escape": true,
|
||||
"interval": 5,
|
||||
"tooltip": false,
|
||||
@ -26,26 +26,31 @@
|
||||
"timezone": "Europe/London",
|
||||
"format": "{:%H:%M %d/%m/%Y}"
|
||||
},
|
||||
"backlight": {
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", "", "", ""]
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon}",
|
||||
"format-charging": "",
|
||||
"format-plugged": "",
|
||||
"format-alt": "{icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", "", "", "", ""]
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": "⚡ {capacity}%",
|
||||
"format-plugged": "🔌 {capacity}%",
|
||||
"format-alt": "{icon} {capacity}%",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"interval": 3
|
||||
},
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{icon} {format_source} {volume}%",
|
||||
"format-muted": "",
|
||||
"format-muted": " mute",
|
||||
"format-source": "",
|
||||
"format-source-muted": " ",
|
||||
"format-source-muted": " src mute ",
|
||||
"format-icons": {
|
||||
"hdmi": ["", "", " "],
|
||||
"default": ["", "", ""]
|
||||
"hdmi": ["", "", ""],
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
@ -57,6 +62,6 @@
|
||||
"custom/power": {
|
||||
"tooltip": false,
|
||||
"on-click": "wlogout &",
|
||||
"format": "襤"
|
||||
"format": ""
|
||||
}
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
@import "mocha.css";
|
||||
|
||||
* {
|
||||
font-family: FantasqueSansMono Nerd Font;
|
||||
font-size: 17px;
|
||||
font-family: "SpaceMono Nerd Font";
|
||||
font-size: 20px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
@ -56,6 +56,9 @@
|
||||
|
||||
#battery {
|
||||
color: @green;
|
||||
margin-right: 1rem;
|
||||
padding-right: 1.5rem;
|
||||
border-radius: 0rem 1rem 1rem 0rem;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
@ -68,10 +71,7 @@
|
||||
|
||||
#backlight {
|
||||
color: @yellow;
|
||||
}
|
||||
|
||||
#backlight, #battery {
|
||||
border-radius: 0;
|
||||
border-radius: 1rem 0rem 0rem 1rem;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
@ -92,6 +92,7 @@
|
||||
|
||||
#custom-power {
|
||||
margin-right: 1rem;
|
||||
padding-right: 1.5rem;
|
||||
border-radius: 0px 1rem 1rem 0px;
|
||||
color: @red;
|
||||
}
|
||||
|
Reference in New Issue
Block a user