Compare commits

..

No commits in common. "79289167b15e4dbdd7da933879e1634a5d766b24" and "62e54fdadf4f80739c0c59c0a2f1bd467aa0b50e" have entirely different histories.

3 changed files with 1 additions and 19 deletions

View File

@ -257,9 +257,6 @@ in
${pkgs.coreutils}/bin/shred "$TMP_FILE" ${pkgs.coreutils}/bin/shred "$TMP_FILE"
${pkgs.coreutils}/bin/rm "$TMP_FILE" ${pkgs.coreutils}/bin/rm "$TMP_FILE"
''; '';
refresh_i3status = pkgs.writeShellScriptBin "refresh_i3status" ''
${pkgs.coreutils}/bin/sleep 1 && ${pkgs.procps}/bin/pkill -USR1 i3status-rs
'';
in in
{ {
enable = true; enable = true;
@ -274,7 +271,7 @@ in
} }
{ {
event = "after-resume"; event = "after-resume";
command = "${refresh_i3status}/bin/refresh_i3status"; command = "${pkgs.procps}/bin/pkill -USR1 i3status-rs";
} }
]; ];
timeouts = [ timeouts = [

View File

@ -50,7 +50,6 @@ in
[ [
anydesk anydesk
appimage-run appimage-run
ark
arp-scan arp-scan
birdtray birdtray
blackmagic blackmagic

View File

@ -12,10 +12,6 @@
}; };
blocks = [ blocks = [
{
block = "keyboard_layout";
driver = "sway";
}
{ {
block = "battery"; block = "battery";
interval = 10; interval = 10;
@ -40,30 +36,20 @@
{ {
block = "net"; block = "net";
device = "wlan0"; device = "wlan0";
if_command = "ip link show wlan0";
interval = 2; interval = 2;
} }
{ {
block = "net"; block = "net";
device = "enp5s0"; device = "enp5s0";
if_command = "ip link show enp5s0";
interval = 2; interval = 2;
} }
{ {
block = "net"; block = "net";
device = "enp7s0f3u1u1"; device = "enp7s0f3u1u1";
if_command = "ip link show enp7s0f3u1u1";
interval = 2; interval = 2;
} }
{ {
block = "net"; block = "net";
device = "enp7s0f4u1u1";
if_command = "ip link show enp7s0f4u1u1";
interval = 2;
}
{
block = "net";
if_command = "ip link show eno1";
device = "eno1"; device = "eno1";
interval = 2; interval = 2;
} }