Last active
March 25, 2025 08:26
-
-
Save zoltan-magyar/a4e4dd0e4bf4a4db51244de8b04c5f7f to your computer and use it in GitHub Desktop.
termOS configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Default config for sway | |
| # | |
| # Copy this to ~/.config/sway/config and edit it to your liking. | |
| # | |
| # Read `man 5 sway` for a complete reference. | |
| # | |
| # Variables | |
| # | |
| # Logo key. Use Mod1 for Alt. | |
| set $mod Mod4 | |
| # Home row direction keys, like vim | |
| set $left h | |
| set $down j | |
| set $up k | |
| set $right l | |
| # Your preferred terminal emulator | |
| set $term foot | |
| # Your preferred application launcher | |
| # Note: pass the final command to swaymsg so that the resulting window can be opened | |
| # on the original workspace that the command was run on. | |
| set $menu fuzzel | |
| set $bar waybar | |
| # | |
| # Display | |
| # | |
| # Cursor | |
| # seat seat0 xcursor_theme miniature 48 | |
| # Colors | |
| client.focused #EBDBB2 #EBDBB2 #3C3836 #665C54 #D5C4A1 | |
| client.focused_inactive #665C54 #665C54 #FBF1C7 #D5C4A1 #928374 | |
| client.unfocused #32302F #32302F #A89984 #665C54 #3C3836 | |
| client.urgent #CC241D #CC241D #FBF1C7 #FB4934 #CC241D | |
| # Background | |
| output * bg #282828 solid_color | |
| # Titlebar | |
| title_align center | |
| titlebar_padding 3 | |
| titlebar_border_thickness 0 | |
| # Borders | |
| set $border_size 2 | |
| default_border normal $border_size | |
| default_floating_border normal $border_size | |
| smart_borders on | |
| for_window [app_id=".*"] border normal $border_size | |
| # Gaps | |
| gaps inner 4 | |
| smart_gaps on | |
| # Font | |
| font pango:Cozette, Symbols Nerd Font Mono 12px | |
| # | |
| # Idle & Lock | |
| # | |
| # Example configuration: | |
| exec swayidle -w \ | |
| timeout 300 'waylock -init-color 0x3c3836 -input-color 0x665c54 -fail-color 0x9d0006' \ | |
| timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ | |
| before-sleep 'waylock -f -init-color 0x3c3936 -input-color 0x665c54 -fail-color 0x9d0006' | |
| # | |
| # This will lock your screen after 300 seconds of inactivity, then turn off | |
| # your displays after another 300 seconds, and turn your screens back on when | |
| # resumed. It will also lock your screen before your computer goes to sleep. | |
| # | |
| # Input | |
| # | |
| # Example configuration: | |
| # | |
| # input "2:14:SynPS/2_Synaptics_TouchPad" { | |
| # dwt enabled | |
| # tap enabled | |
| # natural_scroll enabled | |
| # middle_emulation enabled | |
| # } | |
| # | |
| # You can get the names of your inputs by running: swaymsg -t get_inputs | |
| # Read `man 5 sway-input` for more information about this section. | |
| # | |
| # General | |
| # | |
| bindsym $mod+Return exec $term | |
| # Kill focused window | |
| bindsym $mod+Shift+q kill | |
| # Start your launcher | |
| bindsym $mod+d exec $menu | |
| # Drag floating windows by holding down $mod and left mouse button. | |
| # Resize them with right mouse button + $mod. | |
| # Despite the name, also works for non-floating windows. | |
| # Change normal to inverse to use left mouse button for resizing and right | |
| # mouse button for dragging. | |
| floating_modifier $mod normal | |
| # Reload the configuration file | |
| bindsym $mod+Shift+c reload | |
| # Exit sway (logs you out of your Wayland session) | |
| bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
| # | |
| # Moving around | |
| # | |
| # Move your focus around | |
| bindsym $mod+$left focus left | |
| bindsym $mod+$down focus down | |
| bindsym $mod+$up focus up | |
| bindsym $mod+$right focus right | |
| # Or use $mod+[up|down|left|right] | |
| bindsym $mod+Left focus left | |
| bindsym $mod+Down focus down | |
| bindsym $mod+Up focus up | |
| bindsym $mod+Right focus right | |
| # Move the focused window with the same, but add Shift | |
| bindsym $mod+Shift+$left move left | |
| bindsym $mod+Shift+$down move down | |
| bindsym $mod+Shift+$up move up | |
| bindsym $mod+Shift+$right move right | |
| # Ditto, with arrow keys | |
| bindsym $mod+Shift+Left move left | |
| bindsym $mod+Shift+Down move down | |
| bindsym $mod+Shift+Up move up | |
| bindsym $mod+Shift+Right move right | |
| # | |
| # Workspaces: | |
| # | |
| # Switch to workspace | |
| bindsym $mod+1 workspace number 1 | |
| bindsym $mod+2 workspace number 2 | |
| bindsym $mod+3 workspace number 3 | |
| bindsym $mod+4 workspace number 4 | |
| bindsym $mod+5 workspace number 5 | |
| bindsym $mod+6 workspace number 6 | |
| bindsym $mod+7 workspace number 7 | |
| bindsym $mod+8 workspace number 8 | |
| bindsym $mod+9 workspace number 9 | |
| bindsym $mod+0 workspace number 10 | |
| # Move focused container to workspace | |
| bindsym $mod+Shift+1 move container to workspace number 1 | |
| bindsym $mod+Shift+2 move container to workspace number 2 | |
| bindsym $mod+Shift+3 move container to workspace number 3 | |
| bindsym $mod+Shift+4 move container to workspace number 4 | |
| bindsym $mod+Shift+5 move container to workspace number 5 | |
| bindsym $mod+Shift+6 move container to workspace number 6 | |
| bindsym $mod+Shift+7 move container to workspace number 7 | |
| bindsym $mod+Shift+8 move container to workspace number 8 | |
| bindsym $mod+Shift+9 move container to workspace number 9 | |
| bindsym $mod+Shift+0 move container to workspace number 10 | |
| # Note: workspaces can have any name you want, not just numbers. | |
| # We just use 1-10 as the default. | |
| # | |
| # Layout: | |
| # | |
| # You can "split" the current object of your focus with | |
| # $mod+b or $mod+v, for horizontal and vertical splits | |
| # respectively. | |
| bindsym $mod+b splith | |
| bindsym $mod+v splitv | |
| # Switch the current container between different layout styles | |
| bindsym $mod+s layout stacking | |
| bindsym $mod+w layout tabbed | |
| bindsym $mod+e layout toggle split | |
| # Make the current focus fullscreen | |
| bindsym $mod+f fullscreen | |
| # Toggle the current focus between tiling and floating mode | |
| bindsym $mod+Shift+space floating toggle | |
| # Swap focus between the tiling area and the floating area | |
| bindsym $mod+space focus mode_toggle | |
| # Move focus to the parent container | |
| bindsym $mod+a focus parent | |
| # | |
| # Scratchpad: | |
| # | |
| # Sway has a "scratchpad", which is a bag of holding for windows. | |
| # You can send windows there and get them back later. | |
| # Move the currently focused window to the scratchpad | |
| bindsym $mod+Shift+minus move scratchpad | |
| # Show the next scratchpad window or hide the focused scratchpad window. | |
| # If there are multiple scratchpad windows, this command cycles through them. | |
| bindsym $mod+minus scratchpad show | |
| # | |
| # Custom keys: | |
| # | |
| # Volume | |
| bindsym XF86AudioRaiseVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%+ --limit 1 | |
| bindsym XF86AudioLowerVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%- --limit 1 | |
| bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle | |
| bindsym XF86AudioMicMute exec wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle | |
| # Brightness | |
| bindsym XF86MonBrightnessUp exec xbacklight -inc 10 | |
| bindsym XF86MonBrightnessDown exec xbacklight -dec 10 | |
| # | |
| # Resizing containers: | |
| # | |
| mode "resize" { | |
| # left will shrink the containers width | |
| # right will grow the containers width | |
| # up will shrink the containers height | |
| # down will grow the containers height | |
| bindsym $left resize shrink width 10px | |
| bindsym $down resize grow height 10px | |
| bindsym $up resize shrink height 10px | |
| bindsym $right resize grow width 10px | |
| # Ditto, with arrow keys | |
| bindsym Left resize shrink width 10px | |
| bindsym Down resize grow height 10px | |
| bindsym Up resize shrink height 10px | |
| bindsym Right resize grow width 10px | |
| # Return to default mode | |
| bindsym Return mode "default" | |
| bindsym Escape mode "default" | |
| } | |
| bindsym $mod+r mode "resize" | |
| # | |
| # Status Bar: | |
| # | |
| bar { | |
| swaybar_command $bar | |
| } | |
| include /etc/sway/config.d/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set terminal_name (tty) | |
| if status is-interactive | |
| if test $terminal_name = "/dev/tty"; or test $terminal_name = "/dev/console"; or string match -qr "^/dev/tty[0-9]+\$" -- $terminal_name | |
| set -gx STARSHIP_CONFIG ~/.config/console_starship.toml | |
| else | |
| set -gx STARSHIP_CONFIG ~/.config/starship.toml | |
| end | |
| starship init fish | source | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "layer": "top", | |
| "position": "top", | |
| "modules-left": [ | |
| "sway/mode", | |
| "sway/workspaces", | |
| "clock" | |
| ], | |
| "modules-right": [ | |
| "pulseaudio", | |
| "network", | |
| "memory", | |
| "cpu", | |
| "temperature", | |
| "backlight", | |
| "battery", | |
| "sway/language", | |
| "tray" | |
| ], | |
| // Modules | |
| "backlight": { | |
| "format": " {percent}%" | |
| }, | |
| "battery": { | |
| "interval": 10, | |
| "states": { | |
| "warning": 30, | |
| "critical": 15 | |
| }, | |
| "format-time": "{H}:{M:02}", | |
| "format": "{icon} {capacity}% ({time})", | |
| "format-charging": " {capacity}% ({time})", | |
| "format-charging-full": " {capacity}%", | |
| "format-full": "{icon} {capacity}%", | |
| "format-alt": "{icon} {power}W", | |
| "format-icons": [ | |
| "", | |
| "", | |
| "", | |
| "", | |
| "", | |
| "" | |
| ], | |
| "tooltip": false | |
| }, | |
| "clock": { | |
| "interval": 10, | |
| "format": "{:%d:%m.%Y | %H:%M}", | |
| "tooltip": false | |
| }, | |
| "cpu": { | |
| "interval": 5, | |
| "tooltip": false, | |
| "format": " {usage}%", | |
| "format-alt": " {load}", | |
| "states": { | |
| "warning": 70, | |
| "critical": 90 | |
| } | |
| }, | |
| "sway/language": { | |
| "format": " {}", | |
| "min-length": 5, | |
| "on-click": "swaymsg 'input * xkb_switch_layout next'", | |
| "tooltip": false | |
| }, | |
| "memory": { | |
| "interval": 5, | |
| "format": " {used:0.1f}G/{total:0.1f}G", | |
| "states": { | |
| "warning": 70, | |
| "critical": 90 | |
| }, | |
| "tooltip": false | |
| }, | |
| "network": { | |
| "interval": 5, | |
| "format-wifi": " {essid} ({signalStrength}%)", | |
| "format-ethernet": " {ifname}", | |
| "format-disconnected": "No connection", | |
| "format-alt": " {ipaddr}/{cidr}", | |
| "tooltip": false | |
| }, | |
| "sway/mode": { | |
| "format": "{}", | |
| "tooltip": false | |
| }, | |
| "sway/window": { | |
| "format": "{}", | |
| "max-length": 30, | |
| "tooltip": false | |
| }, | |
| "sway/workspaces": { | |
| "disable-scroll-wraparound": true, | |
| "smooth-scrolling-threshold": 4, | |
| "enable-bar-scroll": true, | |
| "format": "{name}" | |
| }, | |
| "pulseaudio": { | |
| "format": "{icon} {volume}% {format_source}", | |
| "format-bluetooth": "{icon} {volume}%", | |
| "format-source": " {volume}%", | |
| "format-source-muted": "", | |
| "format-muted": "婢 {format_source}", | |
| "format-icons": { | |
| "headphone": "", | |
| "default": ["奄", "", ""] | |
| }, | |
| "scroll-step": 1, | |
| "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle", | |
| "tooltip": false | |
| }, | |
| "temperature": { | |
| "critical-threshold": 90, | |
| "interval": 5, | |
| "format": "{icon} {temperatureC}°", | |
| "format-icons": [ | |
| "", | |
| "", | |
| "", | |
| "", | |
| "" | |
| ], | |
| "tooltip": false | |
| }, | |
| "privacy": { | |
| "icon-spacing": 4, | |
| "icon-size": 18, | |
| "transition-duration": 250, | |
| "modules": [ | |
| { | |
| "type": "screenshare", | |
| "tooltip": true, | |
| "tooltip-icon-size": 24 | |
| }, | |
| { | |
| "type": "audio-out", | |
| "tooltip": true, | |
| "tooltip-icon-size": 24 | |
| }, | |
| { | |
| "type": "audio-in", | |
| "tooltip": true, | |
| "tooltip-icon-size": 24 | |
| } | |
| ] | |
| }, | |
| "tray": { | |
| "icon-size": 18 | |
| //"spacing": 10 | |
| } | |
| } | |
| // vi:ft=jsonc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [character] | |
| success_symbol = "[>](bold green)" | |
| error_symbol = "[x](bold red)" | |
| vimcmd_symbol = "[<](bold green)" | |
| [git_commit] | |
| tag_symbol = " tag " | |
| [git_status] | |
| ahead = ">" | |
| behind = "<" | |
| diverged = "<>" | |
| renamed = "r" | |
| deleted = "x" | |
| [aws] | |
| symbol = "aws " | |
| [azure] | |
| symbol = "az " | |
| [bun] | |
| symbol = "bun " | |
| [c] | |
| symbol = "C " | |
| [cobol] | |
| symbol = "cobol " | |
| [conda] | |
| symbol = "conda " | |
| [crystal] | |
| symbol = "cr " | |
| [cmake] | |
| symbol = "cmake " | |
| [daml] | |
| symbol = "daml " | |
| [dart] | |
| symbol = "dart " | |
| [deno] | |
| symbol = "deno " | |
| [dotnet] | |
| symbol = ".NET " | |
| [directory] | |
| read_only = " ro" | |
| [docker_context] | |
| symbol = "docker " | |
| [elixir] | |
| symbol = "exs " | |
| [elm] | |
| symbol = "elm " | |
| [fennel] | |
| symbol = "fnl " | |
| [fossil_branch] | |
| symbol = "fossil " | |
| [gcloud] | |
| symbol = "gcp " | |
| [git_branch] | |
| symbol = "git " | |
| [gleam] | |
| symbol = "gleam " | |
| [golang] | |
| symbol = "go " | |
| [gradle] | |
| symbol = "gradle " | |
| [guix_shell] | |
| symbol = "guix " | |
| [hg_branch] | |
| symbol = "hg " | |
| [java] | |
| symbol = "java " | |
| [julia] | |
| symbol = "jl " | |
| [kotlin] | |
| symbol = "kt " | |
| [lua] | |
| symbol = "lua " | |
| [nodejs] | |
| symbol = "nodejs " | |
| [memory_usage] | |
| symbol = "memory " | |
| [meson] | |
| symbol = "meson " | |
| [nats] | |
| symbol = "nats " | |
| [nim] | |
| symbol = "nim " | |
| [nix_shell] | |
| symbol = "nix " | |
| [ocaml] | |
| symbol = "ml " | |
| [opa] | |
| symbol = "opa " | |
| [os.symbols] | |
| AIX = "aix " | |
| Alpaquita = "alq " | |
| AlmaLinux = "alma " | |
| Alpine = "alp " | |
| Amazon = "amz " | |
| Android = "andr " | |
| Arch = "rch " | |
| Artix = "atx " | |
| CentOS = "cent " | |
| Debian = "deb " | |
| DragonFly = "dfbsd " | |
| Emscripten = "emsc " | |
| EndeavourOS = "ndev " | |
| Fedora = "fed " | |
| FreeBSD = "fbsd " | |
| Garuda = "garu " | |
| Gentoo = "gent " | |
| HardenedBSD = "hbsd " | |
| Illumos = "lum " | |
| Kali = "kali " | |
| Linux = "lnx " | |
| Mabox = "mbox " | |
| Macos = "mac " | |
| Manjaro = "mjo " | |
| Mariner = "mrn " | |
| MidnightBSD = "mid " | |
| Mint = "mint " | |
| NetBSD = "nbsd " | |
| NixOS = "nix " | |
| OpenBSD = "obsd " | |
| OpenCloudOS = "ocos " | |
| openEuler = "oeul " | |
| openSUSE = "osuse " | |
| OracleLinux = "orac " | |
| Pop = "pop " | |
| Raspbian = "rasp " | |
| Redhat = "rhl " | |
| RedHatEnterprise = "rhel " | |
| RockyLinux = "rky " | |
| Redox = "redox " | |
| Solus = "sol " | |
| SUSE = "suse " | |
| Ubuntu = "ubnt " | |
| Ultramarine = "ultm " | |
| Unknown = "unk " | |
| Void = "void " | |
| Windows = "win " | |
| [package] | |
| symbol = "pkg " | |
| [perl] | |
| symbol = "pl " | |
| [php] | |
| symbol = "php " | |
| [pijul_channel] | |
| symbol = "pijul " | |
| [pulumi] | |
| symbol = "pulumi " | |
| [purescript] | |
| symbol = "purs " | |
| [python] | |
| symbol = "py " | |
| [quarto] | |
| symbol = "quarto " | |
| [raku] | |
| symbol = "raku " | |
| [ruby] | |
| symbol = "rb " | |
| [rust] | |
| symbol = "rs " | |
| [scala] | |
| symbol = "scala " | |
| [spack] | |
| symbol = "spack " | |
| [solidity] | |
| symbol = "solidity " | |
| [status] | |
| symbol = "[x](bold red) " | |
| [sudo] | |
| symbol = "sudo " | |
| [swift] | |
| symbol = "swift " | |
| [typst] | |
| symbol = "typst " | |
| [terraform] | |
| symbol = "terraform " | |
| [zig] | |
| symbol = "zig " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # output=<not set> | |
| font=Cozette HiDpi:size=20 | |
| dpi-aware=no | |
| # prompt="> " | |
| # icon-theme=hicolor | |
| icons-enabled=no | |
| # fields=filename,name,generic | |
| # password-character=* | |
| filter-desktop=no | |
| # fuzzy=yes | |
| # show-actions=no | |
| terminal=foot | |
| # launch-prefix=<not set> | |
| # list-executables-in-path=no | |
| # anchor=center | |
| # lines=15 | |
| # width=30 | |
| # tabs=8 | |
| # horizontal-pad=40 | |
| # vertical-pad=8 | |
| # inner-pad=0 | |
| # image-size-ratio=0.5 | |
| # line-height=<use font metrics> | |
| # letter-spacing=0 | |
| # layer = top | |
| # exit-on-keyboard-focus-loss = yes | |
| [colors] | |
| background=32302fff | |
| text=ebdbb2ff | |
| match=d65d0eff | |
| selection=ebdbb2ff | |
| selection-text=3c3836ff | |
| selection-match=d65d0eff | |
| border=ebdbb2ff | |
| [border] | |
| width=5 | |
| radius=0 | |
| [dmenu] | |
| # mode=text # text|index | |
| # exit-immediately-if-empty=no | |
| [key-bindings] | |
| # cancel=Escape Control+g | |
| # execute=Return KP_Enter Control+y | |
| # execute-or-next=Tab | |
| # execute-input=Shift+Return Shift+KP_Enter | |
| # cursor-left=Left Control+b | |
| # cursor-left-word=Control+Left Mod1+b | |
| # cursor-right=Right Control+f | |
| # cursor-right-word=Control+Right Mod1+f | |
| # cursor-home=Home Control+a | |
| # cursor-end=End Control+e | |
| # delete-prev=BackSpace | |
| # delete-prev-word=Mod1+BackSpace Control+BackSpace | |
| # delete-line-backward=Control+u | |
| # delete-next=Delete KP_Delete Control+d | |
| # delete-next-word=Mod1+d Control+Delete Control+KP_Delete | |
| # delete-line-forward=Control+k | |
| # prev=Up Control+p | |
| # prev-with-wrap=ISO_Left_Tab | |
| # prev-page=Page_Up KP_Page_Up | |
| # next=Down Control+n | |
| # next-with-wrap=none | |
| # next-page=Page_Down KP_Page_Down | |
| # custom-N: *dmenu mode only*. Like execute, but with a non-zero | |
| # exit-code; custom-1 exits with code 10, custom-2 with 11, custom-3 | |
| # with 12, and so on. | |
| # custom-1=Mod1+1 | |
| # custom-2=Mod1+2 | |
| # custom-3=Mod1+3 | |
| # custom-4=Mod1+4 | |
| # custom-5=Mod1+5 | |
| # custom-6=Mod1+6 | |
| # custom-7=Mod1+7 | |
| # custom-8=Mod1+8 | |
| # custom-9=Mod1+9 | |
| # custom-10=Mod1+0 | |
| # custom-11=Mod1+exclam | |
| # custom-12=Mod1+at | |
| # custom-13=Mod1+numbersign | |
| # custom-14=Mod1+dollar | |
| # custom-15=Mod1+percent | |
| # custom-16=Mod1+dead_circumflex | |
| # custom-17=Mod1+ampersand | |
| # custom-18=Mod1+asterix | |
| # custom-19=Mod1+parentleft |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [aws] | |
| symbol = " " | |
| [buf] | |
| symbol = " " | |
| [c] | |
| symbol = " " | |
| [conda] | |
| symbol = " " | |
| [crystal] | |
| symbol = " " | |
| [dart] | |
| symbol = " " | |
| [directory] | |
| read_only = " " | |
| [docker_context] | |
| symbol = " " | |
| [elixir] | |
| symbol = " " | |
| [elm] | |
| symbol = " " | |
| [fennel] | |
| symbol = " " | |
| [fossil_branch] | |
| symbol = " " | |
| [git_branch] | |
| symbol = " " | |
| [golang] | |
| symbol = " " | |
| [guix_shell] | |
| symbol = " " | |
| [haskell] | |
| symbol = " " | |
| [haxe] | |
| symbol = " " | |
| [hg_branch] | |
| symbol = " " | |
| [hostname] | |
| ssh_symbol = " " | |
| [java] | |
| symbol = " " | |
| [julia] | |
| symbol = " " | |
| [kotlin] | |
| symbol = " " | |
| [lua] | |
| symbol = " " | |
| [memory_usage] | |
| symbol = " " | |
| [meson] | |
| symbol = " " | |
| [nim] | |
| symbol = " " | |
| [nix_shell] | |
| symbol = " " | |
| [nodejs] | |
| symbol = " " | |
| [ocaml] | |
| symbol = " " | |
| [os.symbols] | |
| Alpaquita = " " | |
| Alpine = " " | |
| AlmaLinux = " " | |
| Amazon = " " | |
| Android = " " | |
| Arch = " " | |
| Artix = " " | |
| CentOS = " " | |
| Debian = " " | |
| DragonFly = " " | |
| Emscripten = " " | |
| EndeavourOS = " " | |
| Fedora = " " | |
| FreeBSD = " " | |
| Garuda = " " | |
| Gentoo = " " | |
| HardenedBSD = " " | |
| Illumos = " " | |
| Kali = " " | |
| Linux = " " | |
| Mabox = " " | |
| Macos = " " | |
| Manjaro = " " | |
| Mariner = " " | |
| MidnightBSD = " " | |
| Mint = " " | |
| NetBSD = " " | |
| NixOS = " " | |
| OpenBSD = " " | |
| openSUSE = " " | |
| OracleLinux = " " | |
| Pop = " " | |
| Raspbian = " " | |
| Redhat = " " | |
| RedHatEnterprise = " " | |
| RockyLinux = " " | |
| Redox = " " | |
| Solus = " " | |
| SUSE = " " | |
| Ubuntu = " " | |
| Unknown = " " | |
| Void = " " | |
| Windows = " " | |
| [package] | |
| symbol = " " | |
| [perl] | |
| symbol = " " | |
| [php] | |
| symbol = " " | |
| [pijul_channel] | |
| symbol = " " | |
| [python] | |
| symbol = " " | |
| [rlang] | |
| symbol = " " | |
| [ruby] | |
| symbol = " " | |
| [rust] | |
| symbol = " " | |
| [scala] | |
| symbol = " " | |
| [swift] | |
| symbol = " " | |
| [zig] | |
| symbol = " " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Styles */ | |
| /* Colors (gruvbox) */ | |
| @define-color black #282828; | |
| @define-color red #cc241d; | |
| @define-color green #98971a; | |
| @define-color yellow #d79921; | |
| @define-color blue #458588; | |
| @define-color purple #b16286; | |
| @define-color aqua #689d6a; | |
| @define-color gray #a89984; | |
| @define-color brgray #928374; | |
| @define-color brred #fb4934; | |
| @define-color brgreen #b8bb26; | |
| @define-color bryellow #fabd2f; | |
| @define-color brblue #83a598; | |
| @define-color brpurple #d3869b; | |
| @define-color braqua #8ec07c; | |
| @define-color white #ebdbb2; | |
| @define-color bg2 #504945; | |
| @define-color warning @bryellow; | |
| @define-color critical @red; | |
| @define-color mode @black; | |
| @define-color unfocused @bg2; | |
| @define-color focused @white; | |
| @define-color inactive @purple; | |
| @define-color sound @brpurple; | |
| @define-color network @purple; | |
| @define-color memory @braqua; | |
| @define-color cpu @green; | |
| @define-color temp @brgreen; | |
| @define-color layout @bryellow; | |
| @define-color battery @aqua; | |
| @define-color date @black; | |
| @define-color time @white; | |
| /* Reset all styles */ | |
| * { | |
| border: none; | |
| border-radius: 0; | |
| min-height: 0; | |
| margin: 0; | |
| padding: 0; | |
| box-shadow: none; | |
| text-shadow: none; | |
| icon-shadow: none; | |
| } | |
| /* The whole bar */ | |
| #waybar { | |
| background: rgba(40, 40, 40, 0.8784313725); /* #282828e0 */ | |
| color: @white; | |
| font-family: Cozette; | |
| font-size: 10pt; | |
| /*font-weight: bold;*/ | |
| } | |
| /* Each module */ | |
| #battery, | |
| #clock, | |
| #cpu, | |
| #language, | |
| #memory, | |
| #mode, | |
| #network, | |
| #pulseaudio, | |
| #temperature, | |
| #tray, | |
| #backlight, | |
| #idle_inhibitor, | |
| #disk, | |
| #user, | |
| #mpris { | |
| padding: 1px 8pt; | |
| } | |
| /* Each critical module */ | |
| /* #mode, | |
| #memory.critical, | |
| #cpu.critical, | |
| #temperature.critical, | |
| #battery.critical.discharging { | |
| animation-timing-function:arch bluetooth -16 error linear; | |
| animation-iteration-count: infinite; | |
| animation-direction: alternate; | |
| animation-name: blink-critical; | |
| animation-duration: 1s; | |
| } | |
| */ | |
| /* Each warning */ | |
| #network.disconnected, | |
| #memory.warning, | |
| #cpu.warning, | |
| #temperature.warning, | |
| #battery.warning.discharging { | |
| color: @warning; | |
| } | |
| /* And now modules themselves in their respective order */ | |
| /* Current sway mode (resize etc) */ | |
| #mode { | |
| color: @white; | |
| background: @mode; | |
| } | |
| /* Workspaces stuff */ | |
| #workspaces button { | |
| /*font-weight: bold;*/ | |
| padding-left: 2pt; | |
| padding-right: 2pt; | |
| color: @white; | |
| background: @unfocused; | |
| } | |
| /* Inactive (on unfocused output) */ | |
| #workspaces button.visible { | |
| color: @white; | |
| background: @inactive; | |
| } | |
| /* Active (on focused output) */ | |
| #workspaces button.focused { | |
| color: @black; | |
| background: @focused; | |
| } | |
| /* Contains an urgent window */ | |
| #workspaces button.urgent { | |
| color: @black; | |
| background: @warning; | |
| } | |
| /* Style when cursor is on the button */ | |
| #workspaces button:hover { | |
| background: @black; | |
| color: @white; | |
| } | |
| #window { | |
| margin-right: 35pt; | |
| margin-left: 35pt; | |
| } | |
| #pulseaudio { | |
| background: @sound; | |
| color: @black; | |
| } | |
| #network { | |
| background: @network; | |
| color: @white; | |
| } | |
| #memory { | |
| background: @memory; | |
| color: @black; | |
| } | |
| #cpu { | |
| background: @cpu; | |
| color: @white; | |
| } | |
| #temperature { | |
| background: @temp; | |
| color: @black; | |
| } | |
| #language { | |
| background: @layout; | |
| color: @black; | |
| } | |
| #backlight { | |
| background: @gray; | |
| color: @black; | |
| } | |
| #battery { | |
| background: @battery; | |
| color: @white; | |
| } | |
| #tray { | |
| background: @date; | |
| } | |
| #clock.date { | |
| background: @date; | |
| color: @white; | |
| } | |
| #clock.time { | |
| background: @time; | |
| color: @black; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment