Compare commits
No commits in common. "5076625c183053d284763c7097acee5b4758ba3e" and "0e386d6cde54ff95ec2a62e026afe38b5c85d658" have entirely different histories.
5076625c18
...
0e386d6cde
4 changed files with 8 additions and 22 deletions
2
justfile
2
justfile
|
@ -96,7 +96,7 @@ kitty-terminal:
|
||||||
[group("graphical")]
|
[group("graphical")]
|
||||||
niri-window-manager:
|
niri-window-manager:
|
||||||
@just _echowarning "1) Installing niri and related tools"
|
@just _echowarning "1) Installing niri and related tools"
|
||||||
paru -S blueberry brightnessctl cliphist fuzzel gdm gnome-keyring inter-font mako niri-git noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra polkit-kde-agent swayidle swaylock ttf-firacode-nerd ttf-font-awesome waybar wl-clipboard wlsunset wpaperd xdg-desktop-portal-gnome xwayland-satellite-git
|
paru -S cliphist fuzzel gdm gnome-keyring inter-font mako niri-git noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra polkit-kde-agent swayidle swaylock ttf-firacode-nerd ttf-font-awesome waybar wl-clipboard wlsunset wpaperd xdg-desktop-portal-gnome xwayland-satellite-git
|
||||||
|
|
||||||
@just _echowarning "\n2) Stowing niri config"
|
@just _echowarning "\n2) Stowing niri config"
|
||||||
stow --dotfiles -S niri
|
stow --dotfiles -S niri
|
||||||
|
|
|
@ -232,6 +232,9 @@ binds {
|
||||||
Control+Shift+Escape {
|
Control+Shift+Escape {
|
||||||
spawn "kitty" "-e" "btop"
|
spawn "kitty" "-e" "btop"
|
||||||
}
|
}
|
||||||
|
// You can also use a shell. Do this if you need pipes, multiple commands, etc.
|
||||||
|
// Note: the entire command goes as a single argument in the end.
|
||||||
|
// Mod+T { spawn "bash" "-c" "notify-send hello && exec alacritty"; }
|
||||||
// Volume keys mappings for PipeWire & WirePlumber.
|
// Volume keys mappings for PipeWire & WirePlumber.
|
||||||
XF86AudioRaiseVolume allow-when-locked=true {
|
XF86AudioRaiseVolume allow-when-locked=true {
|
||||||
spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"
|
spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"
|
||||||
|
@ -245,13 +248,6 @@ binds {
|
||||||
XF86AudioMicMute allow-when-locked=true {
|
XF86AudioMicMute allow-when-locked=true {
|
||||||
spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"
|
spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"
|
||||||
}
|
}
|
||||||
// Brightness keys mappings
|
|
||||||
XF86MonBrightnessDown allow-when-locked=true {
|
|
||||||
spawn "brightnessctl" "set" "5%-";
|
|
||||||
}
|
|
||||||
XF86MonBrightnessUp allow-when-locked=true {
|
|
||||||
spawn "brightnessctl" "set" "5%+";
|
|
||||||
}
|
|
||||||
Alt+F4 {
|
Alt+F4 {
|
||||||
close-window
|
close-window
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"tray",
|
"tray",
|
||||||
"idle_inhibitor",
|
"idle_inhibitor",
|
||||||
"power-profiles-daemon",
|
|
||||||
"battery",
|
"battery",
|
||||||
|
"power-profiles-daemon",
|
||||||
"wireplumber",
|
"wireplumber",
|
||||||
"bluetooth",
|
"bluetooth",
|
||||||
"network"
|
"network"
|
||||||
|
@ -56,14 +56,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"battery": {
|
"battery": {
|
||||||
"format": "{icon} {capacity}%",
|
"format": "{icon} {capacity}%"
|
||||||
"format-icons": [
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
""
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"power-profiles-daemon": {
|
"power-profiles-daemon": {
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
|
@ -84,14 +77,12 @@
|
||||||
},
|
},
|
||||||
"bluetooth": {
|
"bluetooth": {
|
||||||
"format-disabled": "",
|
"format-disabled": "",
|
||||||
"format-connected": " {num_connections}",
|
"format-connected": " {num_connections}"
|
||||||
"on-click": "blueberry"
|
|
||||||
},
|
},
|
||||||
"network": {
|
"network": {
|
||||||
"format-ethernet": " Wired",
|
"format-ethernet": " Wired",
|
||||||
"format-wifi": " {essid}",
|
"format-wifi": " {essid}",
|
||||||
"format-disconnected": " Disconnected",
|
"format-disconnected": " Disconnected",
|
||||||
"on-click": "$TERMINAL -e nmtui",
|
|
||||||
"tooltip-format-ethernet": "Interface: {ifname}\nIP: {ipaddr}\nGateway: {gwaddr}",
|
"tooltip-format-ethernet": "Interface: {ifname}\nIP: {ipaddr}\nGateway: {gwaddr}",
|
||||||
"tooltip-format-wifi": "{frequency}GHz {signalStrength}%\n\nInterface: {ifname}\nIP: {ipaddr}\nGateway: {gwaddr}",
|
"tooltip-format-wifi": "{frequency}GHz {signalStrength}%\n\nInterface: {ifname}\nIP: {ipaddr}\nGateway: {gwaddr}",
|
||||||
"tooltip-format-disconnected": ""
|
"tooltip-format-disconnected": ""
|
||||||
|
|
|
@ -100,8 +100,7 @@ button:hover {
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery.critical:not(.charging),
|
#battery.critical:not(.charging) {
|
||||||
#battery.warning:not(.charging) {
|
|
||||||
background-color: #f7768e;
|
background-color: #f7768e;
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue