* i3 -> sway * redshift -> gammastep * i3status -> waybar * changed rofi file format * [new] kanshimain
parent
87a948d98e
commit
13b021e448
8 changed files with 205 additions and 152 deletions
@ -1,64 +0,0 @@ |
||||
# i3status configuration file. |
||||
# see "man i3status" for documentation. |
||||
# It is important that this file is edited as UTF-8. |
||||
# The following line should contain a sharp s: |
||||
# ß |
||||
# If the above line is not correctly displayed, fix your editor first! |
||||
|
||||
general { |
||||
interval = 1 |
||||
} |
||||
|
||||
order += "ipv6" |
||||
order += "wireless _first_" |
||||
order += "ethernet _first_" |
||||
order += "battery all" |
||||
order += "volume master" |
||||
order += "memory" |
||||
order += "cpu_usage" |
||||
order += "cpu_temperature all" |
||||
order += "time" |
||||
|
||||
wireless _first_ { |
||||
format_up = "W: (%quality at %essid) %ip" |
||||
format_down = "W: down" |
||||
} |
||||
|
||||
ethernet _first_ { |
||||
format_up = "E: %ip (%speed)" |
||||
format_down = "E: down" |
||||
} |
||||
|
||||
battery all { |
||||
format = "%status %percentage (%remaining)" |
||||
integer_battery_capacity = true |
||||
last_full_capacity = true |
||||
low_threshold = 15 |
||||
threshold_type = "percentage" |
||||
} |
||||
|
||||
volume master { |
||||
format = "AUD %volume" |
||||
format_muted = "AUD muted (%volume)" |
||||
device = "pulse" |
||||
} |
||||
|
||||
memory { |
||||
format = "MEM %used" |
||||
threshold_degraded = "10%" |
||||
format_degraded = "MEM LOW %used" |
||||
threshold_critical = "5%" |
||||
} |
||||
|
||||
cpu_usage { |
||||
format = "CPU %usage" |
||||
} |
||||
|
||||
cpu_temperature all { |
||||
format = "CPU_T %degrees°C" |
||||
max_threshold = "65" |
||||
} |
||||
|
||||
time { |
||||
format = "%Y-%m-%d %H:%M:%S" |
||||
} |
@ -0,0 +1,8 @@ |
||||
profile home { |
||||
output eDP-1 mode 1920x1080 position 960,1200 |
||||
output DP-2 mode 3840x1200 position 0,0 |
||||
exec swaymsg '[workspace="2"]', move workspace to output DP-2 |
||||
} |
||||
profile default { |
||||
output eDP-1 mode 1920x1080 position 0,0 |
||||
} |
@ -0,0 +1,5 @@ |
||||
configuration { |
||||
terminal: "/usr/bin/env dbus-launch gnome-terminal"; |
||||
ssh-command: "{terminal} -- ssh {host} [-p {port}]"; |
||||
theme: "/usr/share/rofi/themes/Pop-Dark.rasi"; |
||||
} |
@ -0,0 +1,60 @@ |
||||
/* inspired by petabyteboy (petabyte.dev) */ |
||||
|
||||
* { |
||||
border: none; |
||||
border-radius: 0; |
||||
font-family: "JetBrains Mono", sans-serif; |
||||
font-size: 12px; |
||||
} |
||||
|
||||
window { |
||||
background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0)); |
||||
color: #fff; |
||||
} |
||||
#workspaces { |
||||
padding-right: 15px; |
||||
} |
||||
|
||||
#workspaces button { |
||||
transition: none; |
||||
padding: 0 5px; |
||||
background: rgba(255, 255, 255, .2); |
||||
color: #fff; |
||||
} |
||||
|
||||
#workspaces button.icon label { |
||||
font-size: 10px; |
||||
} |
||||
|
||||
#workspaces button.focused { |
||||
color: #333; |
||||
background: #fff; |
||||
} |
||||
|
||||
window>*>*>*>label { |
||||
margin: 0 7px; |
||||
padding: 5px; |
||||
background-color: rgba(255, 255, 255, .2); |
||||
} |
||||
|
||||
#tray { |
||||
margin-left: 10px; |
||||
} |
||||
|
||||
#pulseaudio.muted { |
||||
color: #ffbb00 |
||||
} |
||||
#network.disconnected, |
||||
#battery:not(.charging).warning, |
||||
#temperature.critical { |
||||
background: #ffbb00; |
||||
color: black; |
||||
} |
||||
#battery:not(.charging).critical { |
||||
background: #c50014; |
||||
color: white; |
||||
} |
||||
|
||||
#battery.charging { |
||||
background: #2a7230; |
||||
} |
Reference in new issue