Compare commits

2 Commits
dev ... cachyos

Author SHA1 Message Date
802a4e9e2a update 20260413 2026-04-13 11:47:42 +08:00
4642facc91 cachyos sway updated 2026-01-25 18:06:08 +08:00
8 changed files with 776 additions and 48 deletions

106
config
View File

@@ -1,9 +1,10 @@
# Default config for sway # Default config for sway
# #
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference. # Read `man 5 sway` for a complete reference.
# XWayland scaling fix for fractional scaling
exec systemctl --user set-environment XCURSOR_SIZE=24
# Set default font for sway and monospace font # Set default font for sway and monospace font
font pango:Clear Sans 10 font pango:Clear Sans 10
font pango:Maple Mono NF CN 10 font pango:Maple Mono NF CN 10
@@ -20,24 +21,26 @@ set $right l
# Your preferred terminal emulator # Your preferred terminal emulator
set $term foot set $term foot
# Your preferred application launcher # Your preferred application launcher
#set $menu wmenu-run set $menu /home/gh0s7/.local/bin/wofi-fcitx --show drun
set $menu "rofi -show drun" set $browser firefox-developer-edition
set $browser firefox set $vscode code
# ... (previous config) # ... (previous config)
### Appearance ### Appearance (optimized for battery)
# #
# Gaps # Minimal gaps for reduced compositor work
gaps inner 10 gaps inner 0
gaps outer 5 gaps outer 0
smart_gaps on
# Borders # Minimal borders - hide titlebar by default
default_border pixel 2 default_border pixel 1
default_floating_border pixel 2 default_floating_border pixel 1
hide_edge_borders smart hide_edge_borders smart
# Toggle titlebar with Alt+t
bindsym Mod1+t border toggle
# Colors (Catppuccin Mocha Inspired) # Colors (Catppuccin Mocha Inspired)
set $rosewater #f5e0dc set $rosewater #f5e0dc
set $flamingo #f2cdcd set $flamingo #f2cdcd
@@ -78,7 +81,12 @@ client.background $base
# #
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
#output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill #output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
output * bg /home/gh0s7/Pictures/xenoblade.jpg fill #output * bg /home/gh0s7/Pictures/Wallpapers/130036304_p21.png fill
#output * bg /home/gh0s7/Pictures/Wallpapers/ThinkPad/TP1024.BMP fill
output * bg /home/gh0s7/Pictures/Wallpapers/linus-wallpaper.jpeg fill
output eDP-1 scale 1.5
# Fix XWayland blurry apps with fractional scaling
xwayland enable
# #
# Example configuration: # Example configuration:
# #
@@ -141,8 +149,11 @@ input * xkb_options caps:escape_shifted_capslock
bindsym $mod+d exec $menu bindsym $mod+d exec $menu
bindsym Alt+Space exec $menu bindsym Alt+Space exec $menu
bindsym Ctrl+Alt+F exec $browser bindsym Ctrl+Alt+f exec $browser
bindsym Ctrl+Alt+L exec swaylock -i ~/Pictures/crychic.jpg -s fill bindsym Ctrl+Alt+l exec swaylock -i /home/gh0s7/Pictures/Wallpapers/ThinkPad/IBM1024R.BMP -s fill
bindsym Ctrl+Alt+e exec dolphin
bindsym Ctrl+Shift+y exec code
# Drag floating windows by holding down $mod and left mouse button. # Drag floating windows by holding down $mod and left mouse button.
# Resize them with right mouse button + $mod. # Resize them with right mouse button + $mod.
@@ -152,7 +163,7 @@ input * xkb_options caps:escape_shifted_capslock
floating_modifier $mod normal floating_modifier $mod normal
# Reload the configuration file # Reload the configuration file
bindsym $mod+Shift+c exec pkill waybar && swaymsg reload bindsym $mod+Shift+c reload
# Exit sway (logs you out of your Wayland session) # 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' 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'
@@ -164,6 +175,8 @@ input * xkb_options caps:escape_shifted_capslock
bindsym $mod+$down focus down bindsym $mod+$down focus down
bindsym $mod+$up focus up bindsym $mod+$up focus up
bindsym $mod+$right focus right bindsym $mod+$right focus right
bindsym Alt+Tab focus right
bindsym Alt+Shift+Tab focus left
# Or use $mod+[up|down|left|right] # Or use $mod+[up|down|left|right]
bindsym $mod+Left focus left bindsym $mod+Left focus left
bindsym $mod+Down focus down bindsym $mod+Down focus down
@@ -184,6 +197,7 @@ input * xkb_options caps:escape_shifted_capslock
# Workspaces: # Workspaces:
# #
# Switch to workspace # Switch to workspace
# bindsym $mod+Alt+0 workspace number 0
bindsym $mod+1 workspace number 1 bindsym $mod+1 workspace number 1
bindsym $mod+2 workspace number 2 bindsym $mod+2 workspace number 2
bindsym $mod+3 workspace number 3 bindsym $mod+3 workspace number 3
@@ -193,8 +207,9 @@ input * xkb_options caps:escape_shifted_capslock
bindsym $mod+7 workspace number 7 bindsym $mod+7 workspace number 7
bindsym $mod+8 workspace number 8 bindsym $mod+8 workspace number 8
bindsym $mod+9 workspace number 9 bindsym $mod+9 workspace number 9
bindsym $mod+0 workspace number 0 bindsym $mod+0 workspace number 10
# Move focused container to workspace # Move focused container to workspace
# bindsym $mod+Shift+Alt+0 move container to workspace number 0
bindsym $mod+Shift+1 move container to workspace number 1 bindsym $mod+Shift+1 move container to workspace number 1
bindsym $mod+Shift+2 move container to workspace number 2 bindsym $mod+Shift+2 move container to workspace number 2
bindsym $mod+Shift+3 move container to workspace number 3 bindsym $mod+Shift+3 move container to workspace number 3
@@ -204,7 +219,7 @@ input * xkb_options caps:escape_shifted_capslock
bindsym $mod+Shift+7 move container to workspace number 7 bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+8 move container to workspace number 8 bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9 bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 0 bindsym $mod+Shift+0 move container to workspace number 10
# Note: workspaces can have any name you want, not just numbers. # Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default. # We just use 1-10 as the default.
# #
@@ -276,6 +291,10 @@ bindsym $mod+r mode "resize"
bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5% bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5%
bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5% bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5%
bindsym --locked XF86AudioMicMute exec pactl set-source-mute \@DEFAULT_SOURCE@ toggle bindsym --locked XF86AudioMicMute exec pactl set-source-mute \@DEFAULT_SOURCE@ toggle
# Media player controls
bindsym Ctrl+Alt+Left exec playerctl previous
bindsym Ctrl+Alt+0 exec playerctl play-pause
bindsym Ctrl+Alt+Right exec playerctl next
# Special keys to adjust brightness via brightnessctl # Special keys to adjust brightness via brightnessctl
bindsym --locked XF86MonBrightnessDown exec brightnessctl set 5%- bindsym --locked XF86MonBrightnessDown exec brightnessctl set 5%-
bindsym --locked XF86MonBrightnessUp exec brightnessctl set 5%+ bindsym --locked XF86MonBrightnessUp exec brightnessctl set 5%+
@@ -286,39 +305,42 @@ bindsym $mod+r mode "resize"
# #
# Status Bar: # Status Bar:
# #
# Read `man 5 sway-bar` for more information about this section. # Minimal built-in bar for battery efficiency
#bar { bar {
# status_command i3status position top
# position top status_command while LC_TIME=en_US.UTF-8 date +'%y/%m/%d %a | %H:%M | BAT: '$(cat /sys/class/power_supply/BAT*/capacity 2>/dev/null || echo "AC")'%'; do sleep 60; done
tray_output none
# When the status_command prints a new line to stdout, swaybar updates. colors {
# The default just shows the current date and time. background #1e1e2e
# status_command while date +'%Y-%m-%d %X'; do sleep 1; done statusline #cdd6f4
separator #45475a
# colors { focused_workspace #cba6f7 #cba6f7 #1e1e2e
# background #00000090 active_workspace #45475a #45475a #cdd6f4
# statusline #ffffff inactive_workspace #1e1e2e #1e1e2e #6c7086
# separator #666666 urgent_workspace #f38ba8 #f38ba8 #1e1e2e
# # background #323232 }
# focused_workspace #4c7899 #285577 #ffffff }
# active_workspace #333333 #5f676a #ffffff #exec_always waybar
# inactive_workspace #333333 #222222 #888888
# urgent_workspace #2f343a #900000 #ffffff
# inactive_workspace #32323200 #32323200 #5c5c5c
# }
#}
exec_always waybar
include /etc/sway/config.d/* include /etc/sway/config.d/*
#exec_always fcixt5 -d --replace #exec_always fcixt5 -d --replace
exec --no-startup-id fcitx5 -d exec --no-startup-id fcitx5 -d
exec --no-startup-id brightnessctl set 2000 exec --no-startup-id brightnessctl set 18000
exec --no-startup-id /usr/libexec/pipewire-launcher exec swaync
exec_always mako exec systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
exec systemctl --user import-environment GDK_SCALE GDK_DPI_SCALE QT_AUTO_SCREEN_SCALE_FACTOR
exec dbus-update-activation-environment --systemd GDK_SCALE=2 GDK_DPI_SCALE=0.5 QT_AUTO_SCREEN_SCALE_FACTOR=1
#exec --no-startup-id /usr/libexec/pipewire-launcher
# Idle configuration # Idle configuration
exec swayidle -w \ exec swayidle -w \
timeout 300 'swaylock -f -c 000000' \ timeout 300 'swaylock -f -c 000000' \
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
before-sleep 'swaylock -f -c 000000' before-sleep 'swaylock -f -c 000000'
# Lid switch handler
bindswitch --reload --locked lid:on exec ~/.config/sway/scripts/lid-handler.sh
seat * hide_cursor 5000 seat * hide_cursor 5000

324
config.backup Normal file
View File

@@ -0,0 +1,324 @@
# Default config for sway
#
# Read `man 5 sway` for a complete reference.
# Set default font for sway and monospace font
font pango:Clear Sans 10
font pango:Maple Mono NF CN 10
### 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 ghostty
# Your preferred application launcher
set $menu wofi --show drun
set $browser firefox-developer-edition
# ... (previous config)
### Appearance (optimized for battery)
#
# Minimal gaps for reduced compositor work
gaps inner 0
gaps outer 0
# Minimal borders
default_border pixel 1
default_floating_border pixel 1
hide_edge_borders smart
# Colors (Catppuccin Mocha Inspired)
set $rosewater #f5e0dc
set $flamingo #f2cdcd
set $pink #f5c2e7
set $mauve #cba6f7
set $red #f38ba8
set $maroon #eba0ac
set $peach #fab387
set $yellow #f9e2af
set $green #a6e3a1
set $teal #94e2d5
set $sky #89dceb
set $sapphire #74c7ec
set $blue #89b4fa
set $lavender #b4befe
set $text #cdd6f4
set $subtext1 #bac2de
set $subtext0 #a6adc8
set $overlay2 #9399b2
set $overlay1 #7f849c
set $overlay0 #6c7086
set $surface2 #585b70
set $surface1 #45475a
set $surface0 #313244
set $base #1e1e2e
set $mantle #181825
set $crust #11111b
# class border backgr. text indicator child_border
client.focused $mauve $base $text $rosewater $mauve
client.focused_inactive $overlay0 $base $text $rosewater $overlay0
client.unfocused $overlay0 $base $text $rosewater $overlay0
client.urgent $red $base $peach $overlay0 $red
client.placeholder $overlay0 $base $text $overlay0 $overlay0
client.background $base
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
#output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
#output * bg /home/gh0s7/Pictures/Wallpapers/130036304_p21.png fill
output * bg /home/gh0s7/Pictures/Wallpapers/ThinkPad/TP1024.BMP fill
output eDP-1 scale 1.5
# Fix XWayland blurry apps with fractional scaling
xwayland force
#
# Example configuration:
#
# output HDMI-A-1 resolution 1920x1080 position 1920,0
#
# You can get the names of your outputs by running: swaymsg -t get_outputs
### Idle configuration
#
# Example configuration:
#
# exec swayidle -w \
# timeout 300 'swaylock -f -c 000000' \
# timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
# before-sleep 'swaylock -f -c 000000'
#
# 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 configuration
#
# Example configuration:
#
# input type:touchpad {
# dwt enabled
# tap enabled
# natural_scroll enabled
# middle_emulation enabled
# }
#
# input type:keyboard {
# xkb_layout "eu"
# }
#
# You can also configure each device individually.
# Read `man 5 sway-input` for more information about this section.
input "2:10:TPPS/2_IBM_TrackPoint" {
dwt enabled
tap enabled
accel_profile adaptive
pointer_accel 0.4
}
input * xkb_options caps:escape_shifted_capslock
### Key bindings
#
# Basics:
#
# Start a terminal
bindsym $mod+Return exec $term
bindsym Ctrl+Alt+T exec $term
# Kill focused window
bindsym $mod+Shift+q kill
bindsym Alt+F4 kill
# Start your launcher
bindsym $mod+d exec $menu
bindsym Alt+Space exec $menu
bindsym Ctrl+Alt+f exec $browser
bindsym Ctrl+Alt+l exec swaylock -i /home/gh0s7/Pictures/Wallpapers/ThinkPad/IBM1024R.BMP -s fill
bindsym Ctrl+Alt+e exec dolphin
# 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
bindsym Alt+Tab focus right
bindsym Alt+Shift+Tab focus left
# 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 0
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
# Layout stuff:
#
# 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
#
# 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"
#
# Utilities:
#
# Special keys to adjust volume via PulseAudio
bindsym --locked XF86AudioMute exec pactl set-sink-mute \@DEFAULT_SINK@ toggle
bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5%
bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5%
bindsym --locked XF86AudioMicMute exec pactl set-source-mute \@DEFAULT_SOURCE@ toggle
# Special keys to adjust brightness via brightnessctl
bindsym --locked XF86MonBrightnessDown exec brightnessctl set 5%-
bindsym --locked XF86MonBrightnessUp exec brightnessctl set 5%+
# Special key to take a screenshot with grim
bindsym Print exec grim
bindsym $mod+Shift+S exec grim -g "$(slurp)"
#
# Status Bar:
#
# Minimal built-in bar for battery efficiency
bar {
position top
status_command while LC_TIME=en_US.UTF-8 date +'%y/%m/%d %a | %H:%M | BAT: '$(cat /sys/class/power_supply/BAT*/capacity 2>/dev/null || echo "AC")'%'; do sleep 60; done
tray_output none
colors {
background #1e1e2e
statusline #cdd6f4
separator #45475a
focused_workspace #cba6f7 #cba6f7 #1e1e2e
active_workspace #45475a #45475a #cdd6f4
inactive_workspace #1e1e2e #1e1e2e #6c7086
urgent_workspace #f38ba8 #f38ba8 #1e1e2e
}
}
#exec_always waybar
include /etc/sway/config.d/*
#exec_always fcixt5 -d --replace
exec --no-startup-id fcitx5 -d
exec --no-startup-id brightnessctl set 16000
exec systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
#exec --no-startup-id /usr/libexec/pipewire-launcher
# Idle configuration
exec swayidle -w \
timeout 300 'swaylock -f -c 000000' \
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
before-sleep 'swaylock -f -c 000000'
seat * hide_cursor 5000

56
power-management.md Normal file
View File

@@ -0,0 +1,56 @@
# Sway 电源自动管理配置
## 功能说明
实现 Sway 环境下根据电源状态自动切换性能模式:
- **插电源**`throughput-performance` (高性能)
- **用电池**`laptop-battery-powersave` (节能降频)
仅在 Sway 会话生效,不影响 Plasma 的电源管理。
## 实现方式
### 1. 自动切换脚本
`/usr/local/bin/tuned-auto-switch.sh`
```bash
#!/bin/bash
# Only run if Sway is running
pgrep -x sway > /dev/null || exit 0
if [ "$(cat /sys/class/power_supply/AC*/online)" = "1" ]; then
tuned-adm profile throughput-performance
else
tuned-adm profile laptop-battery-powersave
fi
```
### 2. Systemd 服务
`/etc/systemd/system/tuned-power-switch@.service`
```ini
[Unit]
Description=Switch tuned profile on power change
[Service]
Type=oneshot
ExecStart=/usr/local/bin/tuned-auto-switch.sh
```
### 3. Udev 规则
`/etc/udev/rules.d/99-tuned-power.rules`
```
SUBSYSTEM=="power_supply", ENV{POWER_SUPPLY_ONLINE}=="0", TAG+="systemd", ENV{SYSTEMD_WANTS}="tuned-power-switch@$kernel.service"
SUBSYSTEM=="power_supply", ENV{POWER_SUPPLY_ONLINE}=="1", TAG+="systemd", ENV{SYSTEMD_WANTS}="tuned-power-switch@$kernel.service"
```
## 验证
查看当前配置:
```bash
tuned-adm active
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
```
监控切换日志:
```bash
journalctl -f
```

9
scripts/lid-handler.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# 检查是否插电
if cat /sys/class/power_supply/AC*/online 2>/dev/null | grep -q 1; then
# 插电:锁屏
swaylock -i /home/gh0s7/Pictures/Wallpapers/ThinkPad/IBM1024R.BMP -s fill
else
# 不插电:睡眠
systemctl suspend
fi

311
starship.toml Normal file
View File

@@ -0,0 +1,311 @@
"$schema" = 'https://starship.rs/config-schema.json'
# Global Layout
add_newline = true
command_timeout = 1000
format = """
$os\
$username\
$hostname\
$directory\
$git_branch\
$git_commit\
$git_status\
$docker_context\
$package\
$c\
$cmake\
$cpp\
$golang\
$haskell\
$java\
$kotlin\
$lua\
$nodejs\
$python\
$rust\
$zig\
$conda\
$memory_usage\
$aws\
$gcloud\
$cmd_duration\
$line_break\
$character"""
right_format = """$time"""
# Module Configuration
[os]
disabled = false
style = "bold blue"
[os.symbols]
Alpaquita = " "
Alpine = " "
AlmaLinux = " "
Amazon = " "
Android = " "
AOSC = " "
Arch = " "
Artix = " "
CachyOS = " "
CentOS = " "
Debian = " "
DragonFly = " "
Elementary = " "
Emscripten = " "
EndeavourOS = " "
Fedora = " "
FreeBSD = " "
Garuda = "󰛓 "
Gentoo = " "
HardenedBSD = "󰞌 "
Illumos = "󰈸 "
Ios = "󰀷 "
Kali = " "
Linux = " "
Mabox = " "
Macos = " "
Manjaro = " "
Mariner = " "
MidnightBSD = " "
Mint = " "
NetBSD = " "
NixOS = " "
Nobara = " "
OpenBSD = "󰈺 "
openSUSE = " "
OracleLinux = "󰌷 "
Pop = " "
Raspbian = " "
Redhat = " "
RedHatEnterprise = " "
RockyLinux = " "
Redox = "󰀘 "
Solus = "󰠳 "
SUSE = " "
Ubuntu = " "
Unknown = " "
Void = " "
Windows = "󰍲 "
Zorin = " "
[time]
disabled = false
style = "bold white"
format = "[$time]($style)"
time_format = "%Y-%m-%d %A %H:%M:%S"
[username]
style_user = "bold green"
style_root = "bold red"
format = "[$user]($style)"
disabled = false
show_always = true
[directory]
style = "bold cyan"
truncation_length = 3
truncation_symbol = ""
truncate_to_repo = true
read_only = " 󰌾"
[character]
#success_symbol = "[➜](bold green)"
success_symbol = "[](bold green)"
#success_symbol = "[](bold green)"
#error_symbol = "[✗](bold red)"
error_symbol = "[](bold red)"
vimcmd_symbol = "[V](bold green)"
[git_branch]
symbol = " "
style = "bold purple"
format = "[$symbol$branch(:$remote_branch)]($style) "
[git_status]
style = "bold green"
format = '([\[$all_status$ahead_behind\]]($style) )'
conflicted = "🏳"
ahead = "⇡${count}"
behind = "⇣${count}"
diverged = "⇕⇡${ahead_count}⇣${behind_count}"
up_to_date = "✓"
untracked = "?${count}"
stashed = "$${count}"
modified = "!${count}"
staged = "+${count}"
renamed = "»${count}"
deleted = "✘${count}"
[cmd_duration]
min_time = 2000
style = "bold pink"
# Languages and Tools Symbols (Preserving user choices)
[aws]
symbol = " "
[buf]
symbol = " "
[bun]
symbol = " "
[c]
symbol = " "
[cpp]
symbol = " "
[cmake]
symbol = " "
[conda]
symbol = " "
[crystal]
symbol = " "
[dart]
symbol = " "
[deno]
symbol = " "
[docker_context]
symbol = " "
[elixir]
symbol = " "
[elm]
symbol = " "
[fennel]
symbol = " "
[fortran]
symbol = " "
[fossil_branch]
symbol = " "
[gcloud]
symbol = " "
[git_commit]
tag_symbol = ' '
commit_hash_length = 8
format = "[\\($hash$tag\\)]($style) "
style = "bold green"
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
style = "bold yellow"
[git_metrics]
disabled = false
added_style = "bold green"
deleted_style = "bold red"
format = "[+$added]($added_style)/[-$deleted]($deleted_style) "
[golang]
symbol = " "
[gradle]
symbol = " "
[guix_shell]
symbol = " "
[haskell]
symbol = " "
[haxe]
symbol = " "
[hg_branch]
symbol = " "
[hostname]
ssh_symbol = " "
ssh_only = false
format = "[@$hostname]($style) "
style = "bold cyan"
disabled = false
[java]
symbol = " "
[julia]
symbol = " "
[kotlin]
symbol = " "
[lua]
symbol = " "
[memory_usage]
symbol = "󰍛 "
[meson]
symbol = "󰔷 "
[nim]
symbol = "󰆥 "
[nix_shell]
symbol = " "
[nodejs]
symbol = " "
[ocaml]
symbol = " "
[package]
symbol = "󰏗 "
[perl]
symbol = " "
[php]
symbol = " "
[pijul_channel]
symbol = " "
[pixi]
symbol = "󰏗 "
[python]
symbol = " "
[rlang]
symbol = "󰟔 "
[ruby]
symbol = " "
[rust]
symbol = "󱘗 "
[scala]
symbol = " "
[status]
symbol = " "
[swift]
symbol = " "
[xmake]
symbol = " "
[zig]
symbol = " "

View File

@@ -13,7 +13,7 @@
"sway/workspaces", "sway/workspaces",
"sway/mode", "sway/mode",
"sway/scratchpad" "sway/scratchpad"
// "custom/media" // "custom/media"
], ],
"modules-center": [ "modules-center": [
"sway/window" "sway/window"
@@ -34,7 +34,7 @@
"tray", "tray",
"battery", "battery",
"clock" "clock"
// "custom/power" // "custom/power"
], ],
// Modules configuration // Modules configuration
// "sway/workspaces": { // "sway/workspaces": {
@@ -159,12 +159,13 @@
// }, // },
"network": { "network": {
// "interface": "wlp2*", // (Optional) To force the use of this interface // "interface": "wlp2*", // (Optional) To force the use of this interface
"format-wifi": "{essid} ({signalStrength}%) ", "interval": 1,
"format-ethernet": "{ipaddr}/{cidr} ", "format-wifi": "⬇ {bandwidthDownBytes} ⬆ {bandwidthUpBytes}",
"format-ethernet": "⬇ {bandwidthDownBytes} ⬆ {bandwidthUpBytes}",
"tooltip-format": "{ifname} via {gwaddr} ", "tooltip-format": "{ifname} via {gwaddr} ",
"format-linked": "{ifname} (No IP) ", "format-linked": "{ifname} (No IP) ",
"format-disconnected": "Disconnected ⚠", "format-disconnected": "Disconnected ⚠",
"format-alt": "{ifname}: {ipaddr}/{cidr}" "format-alt": "{essid} {ipaddr}/{cidr}"
}, },
"pulseaudio": { "pulseaudio": {
// "scroll-step": 1, // %, can be a float // "scroll-step": 1, // %, can be a float

View File

@@ -83,7 +83,7 @@ window#waybar.hidden {
/* Window Title */ /* Window Title */
#window { #window {
background-color: transparent; background-color: transparent;
color: @surface0; color: @text;
border-radius: 16px; border-radius: 16px;
padding: 0 12px; padding: 0 12px;
margin: 0 4px; margin: 0 4px;

5
xwayland-hidpi.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
export GDK_SCALE=2
export GDK_DPI_SCALE=0.5
export QT_AUTO_SCREEN_SCALE_FACTOR=1
export XCURSOR_SIZE=32