Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
b90feac4b6
|
|||
|
eb47d5636f
|
@@ -0,0 +1,51 @@
|
||||
ignore-empty-password
|
||||
font=Ubuntu
|
||||
|
||||
clock
|
||||
timestr=%R
|
||||
datestr=%a, %e of %B
|
||||
|
||||
screenshots
|
||||
|
||||
fade-in=0.2
|
||||
|
||||
effect-blur=20x2
|
||||
#effect-greyscale
|
||||
effect-scale=0.3
|
||||
|
||||
indicator
|
||||
indicator-radius=240
|
||||
indicator-thickness=20
|
||||
indicator-caps-lock
|
||||
|
||||
key-hl-color=880033
|
||||
|
||||
separator-color=00000000
|
||||
|
||||
inside-color=00000099
|
||||
inside-clear-color=ffd20400
|
||||
inside-caps-lock-color=009ddc00
|
||||
inside-ver-color=d9d8d800
|
||||
inside-wrong-color=ee2e2400
|
||||
|
||||
ring-color=231f20D9
|
||||
ring-clear-color=231f20D9
|
||||
ring-caps-lock-color=231f20D9
|
||||
ring-ver-color=231f20D9
|
||||
ring-wrong-color=231f20D9
|
||||
|
||||
line-color=00000000
|
||||
line-clear-color=ffd204FF
|
||||
line-caps-lock-color=009ddcFF
|
||||
line-ver-color=d9d8d8FF
|
||||
line-wrong-color=ee2e24FF
|
||||
|
||||
text-clear-color=ffd20400
|
||||
text-ver-color=d9d8d800
|
||||
text-wrong-color=ee2e2400
|
||||
|
||||
bs-hl-color=ee2e24FF
|
||||
caps-lock-key-hl-color=ffd204FF
|
||||
caps-lock-bs-hl-color=ee2e24FF
|
||||
disable-caps-lock-text
|
||||
text-caps-lock-color=009ddc
|
||||
+234
@@ -0,0 +1,234 @@
|
||||
### 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
|
||||
set $term kitty
|
||||
set $menu fuzzel
|
||||
|
||||
### 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 /usr/share/backgrounds/gnome/tarkov-pills-l.jxl fill
|
||||
|
||||
#
|
||||
# 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 type:touchpad {
|
||||
dwt enabled
|
||||
tap enabled
|
||||
natural_scroll enabled
|
||||
middle_emulation enabled
|
||||
}
|
||||
|
||||
input type:keyboard {
|
||||
xkb_layout "fr"
|
||||
xkb_options "ctrl:nocaps"
|
||||
}
|
||||
#
|
||||
# You can also configure each device individually.
|
||||
# Read `man 5 sway-input` for more information about this section.
|
||||
|
||||
### Key bindings
|
||||
#
|
||||
# Basics:
|
||||
#
|
||||
# Start a terminal
|
||||
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+ampersand workspace 1
|
||||
bindsym $mod+eacute workspace 2
|
||||
bindsym $mod+quotedbl workspace 3
|
||||
bindsym $mod+apostrophe workspace 4
|
||||
bindsym $mod+parenleft workspace 5
|
||||
bindsym $mod+egrave workspace 6
|
||||
bindsym $mod+minus workspace 7
|
||||
bindsym $mod+underscore workspace 8
|
||||
bindsym $mod+ccedilla workspace 9
|
||||
bindsym $mod+agrave workspace 10
|
||||
# Move focused container to workspace
|
||||
bindsym $mod+Shift+ampersand move container to workspace 1
|
||||
bindsym $mod+Shift+eacute move container to workspace 2
|
||||
bindsym $mod+Shift+quotedbl move container to workspace 3
|
||||
bindsym $mod+Shift+apostrophe move container to workspace 4
|
||||
bindsym $mod+Shift+parenleft move container to workspace 5
|
||||
bindsym $mod+Shift+egrave move container to workspace 6
|
||||
bindsym $mod+Shift+minus move container to workspace 7
|
||||
bindsym $mod+Shift+underscore move container to workspace 8
|
||||
bindsym $mod+Shift+ccedilla move container to workspace 9
|
||||
bindsym $mod+Shift+agrave move container to workspace 10
|
||||
#
|
||||
# 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
|
||||
|
||||
#
|
||||
# Status Bar:
|
||||
#
|
||||
# Read `man 5 sway-bar` for more information about this section.
|
||||
#Manually disabled
|
||||
#bar {
|
||||
# position top
|
||||
#
|
||||
# # When the status_command prints a new line to stdout, swaybar updates.
|
||||
# # The default just shows the current date and time.
|
||||
# status_command while date +'%Y-%m-%d %X'; do sleep 1; done
|
||||
#
|
||||
# colors {
|
||||
# statusline #ffffff
|
||||
# background #323232
|
||||
# inactive_workspace #32323200 #32323200 #5c5c5c
|
||||
# }
|
||||
#}
|
||||
|
||||
# Addition to the defaults (which are edited)
|
||||
|
||||
default_border none
|
||||
|
||||
# Bind alt+l to lock screen
|
||||
# bindsym Mod1+l exec swaylock
|
||||
|
||||
# Lock screen on power button press
|
||||
bindsym --to-code XF86PowerOff exec swaylock
|
||||
|
||||
include /etc/sway/config.d/*
|
||||
@@ -4,7 +4,6 @@ alias l='ls -C'
|
||||
alias update='/home/furtest/files/scripts/update.sh'
|
||||
alias stop='/home/furtest/files/scripts/shutdown.sh'
|
||||
alias co='/home/furtest/files/scripts/cossh.sh'
|
||||
alias unisync='/home/furtest/files/scripts/file_sync/sync.sh'
|
||||
alias open='xdg-open $@ > /dev/null 2>&1'
|
||||
alias cd='z'
|
||||
alias ghidra='/home/furtest/application/ghidra/ghidraRun'
|
||||
|
||||
@@ -17,6 +17,9 @@ DISABLE_AUTO_TITLE="true"
|
||||
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
|
||||
#COMPLETION_WAITING_DOTS="true"
|
||||
|
||||
# Commment to remember how to do it
|
||||
#setxkbmap -option ctrl:nocaps
|
||||
|
||||
plugins=(git
|
||||
common-aliases
|
||||
zsh-autosuggestions
|
||||
@@ -48,9 +51,6 @@ fi
|
||||
export WINEPREFIX=/home/furtest/applications/wine
|
||||
export WINEARCH=win32
|
||||
|
||||
setxkbmap -option
|
||||
setxkbmap -option ctrl:nocaps
|
||||
|
||||
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
||||
gpgconf --launch gpg-agent
|
||||
|
||||
@@ -59,8 +59,7 @@ bindkey -v
|
||||
|
||||
#deno and rust to path
|
||||
export DENO_INSTALL="/home/furtest/.deno"
|
||||
export PATH="$PATH:$DENO_INSTALL/bin:/home/furtest/.cargo/bin"
|
||||
|
||||
export PATH="$PATH:$DENO_INSTALL/bin:/home/furtest/.cargo/bin:/home/furtest/.local/bin"
|
||||
|
||||
#if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
|
||||
# exec tmux new-session -A -s main
|
||||
@@ -79,6 +78,3 @@ export PATH="$PATH:$DENO_INSTALL/bin:/home/furtest/.cargo/bin"
|
||||
#safe-paste : stop code from being executed when pasted (https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/safe-paste)
|
||||
#colorize : Syntax highlighted cat (ccat) (https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/colorize)
|
||||
#vi-mode : Improve terminal vi keybinding (https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/vi-mode)
|
||||
|
||||
# Created by `pipx` on 2024-09-29 10:10:31
|
||||
export PATH="$PATH:/home/furtest/.local/bin"
|
||||
|
||||
Reference in New Issue
Block a user