Compare commits
2 Commits
407be62649
...
1400cc1433
Author | SHA1 | Date | |
---|---|---|---|
1400cc1433 | |||
a02389636a |
@ -3,8 +3,9 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
confirm-close-surface = "false";
|
confirm-close-surface = false;
|
||||||
copy-on-select = "false";
|
copy-on-select = false;
|
||||||
|
title-report = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -10,7 +10,7 @@ export default function Wifi() {
|
|||||||
{wifi.as(wifi => wifi && (
|
{wifi.as(wifi => wifi && (
|
||||||
<button
|
<button
|
||||||
className="Wifi"
|
className="Wifi"
|
||||||
onClicked={() => {execAsync("ghostty -e nmtui")}}>
|
onClicked={() => {execAsync("ghostty --title=nmtui -e nmtui")}}>
|
||||||
<box>
|
<box>
|
||||||
<icon
|
<icon
|
||||||
tooltipText={bind(wifi, "ssid").as(String)}
|
tooltipText={bind(wifi, "ssid").as(String)}
|
||||||
|
@ -130,8 +130,9 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
windowrulev2 = [
|
windowrulev2 = [
|
||||||
"float, class:(clipse)"
|
"float, title:(nmtui)"
|
||||||
"size 622 652, class:(clipse)"
|
"float, title:(clipse)"
|
||||||
|
"size 622 652, title:(clipse)"
|
||||||
];
|
];
|
||||||
|
|
||||||
exec-once = [
|
exec-once = [
|
||||||
@ -144,7 +145,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
bind = [
|
bind = [
|
||||||
"$mainMod, V, exec, ghostty --class clipse -e clipse"
|
"$mainMod, V, exec, ghostty --title=clipse -e clipse"
|
||||||
|
|
||||||
"$mainMod, Return, exec, ghostty"
|
"$mainMod, Return, exec, ghostty"
|
||||||
"$mainMod, Q, killactive,"
|
"$mainMod, Q, killactive,"
|
||||||
@ -204,8 +205,8 @@
|
|||||||
"$mainMod, mouse_up, workspace, e-1"
|
"$mainMod, mouse_up, workspace, e-1"
|
||||||
|
|
||||||
# Keyboard backlight
|
# Keyboard backlight
|
||||||
"$mainMod, F3, exec, brightnessctl -d *::kbd_backlight set +33%"
|
"$mainMod, F3, exec, ${lib.getExe pkgs.brightnessctl} -d *::kbd_backlight set +33%"
|
||||||
"$mainMod, F2, exec, brightnessctl -d *::kbd_backlight set 33%-"
|
"$mainMod, F2, exec, ${lib.getExe pkgs.brightnessctl} -d *::kbd_backlight set 33%-"
|
||||||
|
|
||||||
# Volume and Media Control
|
# Volume and Media Control
|
||||||
", XF86AudioRaiseVolume, exec, pamixer -i 5 "
|
", XF86AudioRaiseVolume, exec, pamixer -i 5 "
|
||||||
@ -214,8 +215,8 @@
|
|||||||
", XF86AudioMicMute, exec, pamixer --default-source -m"
|
", XF86AudioMicMute, exec, pamixer --default-source -m"
|
||||||
|
|
||||||
# Brightness control
|
# Brightness control
|
||||||
", XF86MonBrightnessDown, exec, brightnessctl set 5%- "
|
", XF86MonBrightnessDown, exec, ${lib.getExe pkgs.brightnessctl} set 5%- "
|
||||||
", XF86MonBrightnessUp, exec, brightnessctl set +5% "
|
", XF86MonBrightnessUp, exec, ${lib.getExe pkgs.brightnessctl} set +5% "
|
||||||
|
|
||||||
# Waybar
|
# Waybar
|
||||||
"$mainMod, B, exec, pkill -SIGUSR1 waybar"
|
"$mainMod, B, exec, pkill -SIGUSR1 waybar"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user