First commit for arachnidsGrip
This commit is contained in:
310
.config/sway/config
Normal file
310
.config/sway/config
Normal file
@@ -0,0 +1,310 @@
|
||||
# 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 kitty
|
||||
# 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 dmenu_path | dmenu | xargs swaymsg exec --
|
||||
set $menu rofi -no-levenshtein-sort -color-enabled -show run | xargs swaymsg exec --
|
||||
set $srclocker swaylock -c 222222 -u -i eDP-1:~/wallpapers/radiance.png\
|
||||
-i DP-5:~/wallpapers/hornet.jpg -i DP-4:~/wallpapers/knight.jpg
|
||||
|
||||
# Name workspaces
|
||||
set $w1 "1:"
|
||||
set $w2 "2:"
|
||||
set $w3 "3:"
|
||||
set $w4 "4:"
|
||||
set $w5 "5:"
|
||||
set $w6 "6:"
|
||||
set $w7 "7:"
|
||||
set $w8 "8:"
|
||||
set $w9 "9:"
|
||||
set $w0 "10:"
|
||||
|
||||
### 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 eDP-1 pos 0 1480 res 1920 1080
|
||||
output HDMI-A-1 pos 1920 1480 res 1920 1080
|
||||
output "Dell Inc. DELL U2410 F525M0A1082L" pos 1920 680 res 1920 1200
|
||||
output "Dell Inc. DELL U2717D JXRPT83GAHKS" pos 3840 0 mode --custom 2560x1440@39Hz transform 90
|
||||
output * bg ~/wallpapers/filianore-u.jpg fill
|
||||
focus output eDP-1
|
||||
#
|
||||
# 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 * dpms off"' \
|
||||
# resume 'swaymsg "output * dpms 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 "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.
|
||||
|
||||
input "*" {
|
||||
xkb_layout fr
|
||||
xkb_variant latin9
|
||||
}
|
||||
|
||||
input "1102:4619:DLL07A0:01_044E:120B" {
|
||||
tap enabled
|
||||
natural_scroll enabled
|
||||
}
|
||||
|
||||
### Key bindings
|
||||
#
|
||||
# Basics:
|
||||
#
|
||||
# Start a terminal
|
||||
bindsym $mod+Return exec $term
|
||||
|
||||
# Kill focused window
|
||||
bindsym $mod+Shift+q kill
|
||||
|
||||
# Sound
|
||||
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
|
||||
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||
bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
||||
|
||||
# Brightness
|
||||
bindsym XF86MonBrightnessUp exec xbacklight -inc 5
|
||||
bindsym XF86MonBrightnessDown exec xbacklight -dec 5
|
||||
|
||||
# Start your launcher
|
||||
bindsym $mod+r 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)
|
||||
set $exitmessage 'You pressed the exit shortcut. Do you really want to exit sway?'
|
||||
bindsym $mod+Shift+e exec swaynag -t warning -m $exitmessage -b 'Yes, exit sway'\
|
||||
'swaymsg exit'
|
||||
|
||||
# Screenshot
|
||||
bindsym Print exec grim\
|
||||
-o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') -\
|
||||
| wl-copy -t image/png
|
||||
#
|
||||
# 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+ampersand workspace $w1
|
||||
bindsym $mod+eacute workspace $w2
|
||||
bindsym $mod+quotedbl workspace $w3
|
||||
bindsym $mod+apostrophe workspace $w4
|
||||
bindsym $mod+parenleft workspace $w5
|
||||
bindsym $mod+minus workspace $w6
|
||||
bindsym $mod+egrave workspace $w7
|
||||
bindsym $mod+underscore workspace $w8
|
||||
bindsym $mod+ccedilla workspace $w9
|
||||
bindsym $mod+agrave workspace $w0
|
||||
# Move focused container to workspace
|
||||
bindsym $mod+Shift+ampersand move container to workspace $w1
|
||||
bindsym $mod+Shift+eacute move container to workspace $w2
|
||||
bindsym $mod+Shift+quotedbl move container to workspace $w3
|
||||
bindsym $mod+Shift+apostrophe move container to workspace $w4
|
||||
bindsym $mod+Shift+parenleft move container to workspace $w5
|
||||
bindsym $mod+Shift+minus move container to workspace $w6
|
||||
bindsym $mod+Shift+egrave move container to workspace $w7
|
||||
bindsym $mod+Shift+underscore move container to workspace $w8
|
||||
bindsym $mod+Shift+ccedilla move container to workspace $w9
|
||||
bindsym $mod+Shift+agrave move container to workspace $w0
|
||||
# Note: workspaces can have any name you want, not just numbers.
|
||||
# We just use 1-10 as the default.
|
||||
bindsym $mod+Shift+equal move workspace to output right
|
||||
#
|
||||
# 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+h 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+parenright 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+parenright 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+Shift+r mode "resize"
|
||||
|
||||
bindsym Ctrl+Alt+l exec $srclocker
|
||||
|
||||
#
|
||||
# Status Bar:
|
||||
#
|
||||
# Read `man 5 sway-bar` for more information about this section.
|
||||
bar {
|
||||
position top
|
||||
pango_markup enabled
|
||||
font pango:DejaVu Sans Mono, FontAwesome5 10
|
||||
|
||||
# When the status_command prints a new line to stdout, swaybar updates.
|
||||
# The default just shows the current date and time.
|
||||
#status_command while ~/.config/sway/status.sh; do sleep 1; done
|
||||
status_command i3status-rs ~/.config/sway/status.toml
|
||||
status_padding 0
|
||||
|
||||
colors {
|
||||
statusline #ffffff
|
||||
background #002b36cc
|
||||
inactive_workspace #002b36cc #002b36cc #93a1a1
|
||||
active_workspace #859900cc #859900cc #002b36
|
||||
focused_workspace #859900cc #859900cc #002b36
|
||||
}
|
||||
}
|
||||
|
||||
hide_edge_borders both
|
||||
default_border none
|
||||
gaps inner 6
|
||||
#smart_gaps on
|
||||
|
||||
include /etc/sway/config.d/*
|
||||
|
||||
# Assignments
|
||||
assign [class="discord"] workspace $w3
|
||||
assign [class="Spotify"] workspace $w3
|
||||
#for_window [class="Chromium"] opacity 0.9
|
||||
|
||||
exec redshift -O 4500 -m wayland
|
||||
exec megasync
|
||||
exec nm-applet --indicator
|
||||
|
||||
workspace $w1 output eDP-1
|
||||
exec $term
|
||||
|
||||
workspace $w2 output eDP-1
|
||||
|
||||
workspace $w3 output eDP-1
|
||||
exec discord
|
||||
exec spotify
|
||||
|
||||
workspace $w4 output "Dell Inc. DELL U2410 F525M0A1082L"
|
||||
|
||||
workspace $w5 output "Dell Inc. DELL U2410 F525M0A1082L"
|
||||
|
||||
workspace $w6 output "Dell Inc. DELL U2410 F525M0A1082L"
|
||||
|
||||
workspace $w7 output "Dell Inc. DELL U2717D JXRPT83GAHKS"
|
||||
|
||||
workspace $w8 output "Dell Inc. DELL U2717D JXRPT83GAHKS"
|
||||
|
||||
workspace $w9 output "Dell Inc. DELL U2717D JXRPT83GAHKS"
|
||||
9
.config/sway/status.sh
Executable file
9
.config/sway/status.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
date_formatted=$(date +'%d/%m/%Y %R')
|
||||
|
||||
battery_status=$(acpi -b | awk '{printf "%3d%", substr($4, 1, length($4)-1)}')
|
||||
|
||||
ram_status=$(free -m | awk '/Mem/{mem = $3}; END {printf "%5dMB", mem}')
|
||||
|
||||
cpu_status=$(top -bn1 | awk '/Cpu/{cpu = 100 - $8}; END {printf "%3d\%", cpu}')
|
||||
|
||||
echo "| RAM: ${ram_status} | CPU: $cpu_status | BAT: $battery_status | $date_formatted |"
|
||||
49
.config/sway/status.toml
Normal file
49
.config/sway/status.toml
Normal file
@@ -0,0 +1,49 @@
|
||||
icons = "awesome"
|
||||
|
||||
[theme]
|
||||
name = "solarized-dark"
|
||||
[theme.overrides]
|
||||
idle_bg = "#002b36cc"
|
||||
info_bg = "#268bd2cc"
|
||||
good_bg = "#859900cc"
|
||||
warning_bg = "#b58900cc"
|
||||
critical_bg = "#dc322fcc"
|
||||
alternating_tint_bg = "#00000000"
|
||||
|
||||
[[block]]
|
||||
block = "focused_window"
|
||||
max_width = 100
|
||||
|
||||
[[block]]
|
||||
block = "music"
|
||||
player = "spotify"
|
||||
buttons = ["play", "next"]
|
||||
on_collapsed_click = "spotify"
|
||||
max_width = 21
|
||||
marquee = true
|
||||
|
||||
[[block]]
|
||||
block = "sound"
|
||||
step_width = 3
|
||||
|
||||
[[block]]
|
||||
block = "memory"
|
||||
display_type = "memory"
|
||||
format_mem = "{Mum}MB"
|
||||
clickable = false
|
||||
|
||||
[[block]]
|
||||
block = "cpu"
|
||||
interval = 1
|
||||
|
||||
#[[block]]
|
||||
#block = "sound"
|
||||
|
||||
[[block]]
|
||||
block = "battery"
|
||||
interval = 10
|
||||
|
||||
[[block]]
|
||||
block = "time"
|
||||
interval = 60
|
||||
format = "%a %d/%m/%Y %R"
|
||||
Reference in New Issue
Block a user