Compare commits
19 Commits
0b9d702f81
...
4bc18cd77b
| Author | SHA1 | Date | |
|---|---|---|---|
| 4bc18cd77b | |||
| 0072f8d29a | |||
| 66a2f40cb3 | |||
| bea5f1c16b | |||
| 422a83e429 | |||
| 78ad509cfc | |||
| 8dd3e4f10a | |||
| 4eac1ed016 | |||
| c83de49eb2 | |||
| f7512ba6fe | |||
| cbd8070e67 | |||
| eaf1f2ed5f | |||
| 84302f004f | |||
| fa922d55c4 | |||
| be23a24852 | |||
| 6480d9e869 | |||
| 7e0dec587f | |||
| 49d419f4bd | |||
| 6bb9456c9d |
@@ -143,11 +143,8 @@ bindsym $mod+r mode "resize"
|
||||
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%+
|
||||
|
||||
#xwayland disable
|
||||
for_window [shell="xwayland"] title_format "[XWayland] %title"
|
||||
|
||||
#seat * xcursor_theme catppuccin-latte-peach-cursors 32
|
||||
|
||||
|
||||
5
.config/sway/config.d/inputs.conf
Normal file
5
.config/sway/config.d/inputs.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
input 2362:12305:ASUP1208:00_093A:3011_Touchpad {
|
||||
natural_scroll enabled
|
||||
tap enabled
|
||||
pointer_accel 0.5
|
||||
}
|
||||
@@ -41,6 +41,12 @@ bindsym $mod+Shift+f floating toggle
|
||||
## Layout management
|
||||
bindsym $mod+tab layout tabbed
|
||||
|
||||
## Laptop
|
||||
bindsym --locked XF86KbdBrightnessUp exec asusctl -n
|
||||
bindsym --locked XF86KbdBrightnessDown exec asusctl -p
|
||||
bindsym --locked XF86MonBrightnessUp exec brightnessctl -e4 -n2 -d amdgpu_bl2 set 5%+
|
||||
bindsym --locked XF86MonBrightnessDown exec brightnessctl -e4 -n2 -d amdgpu_bl2 set 5%-
|
||||
|
||||
## Utils
|
||||
bindsym Print exec bash -c 'file=$(~/.local/bin/snag -d ~/screenshots/) && wl-copy < $file'
|
||||
bindsym Print+Ctrl exec bash -c 'file=$(~/.local/bin/snag -r -d ~/screenshots/) && wl-copy < $file'
|
||||
|
||||
@@ -1,3 +1,2 @@
|
||||
output DP-1 mode 3840x2160@240.000Hz pos 0 0 scale 1.6 adaptive_sync on allow_tearing yes
|
||||
output DP-2 mode 2560x1440@240.000Hz pos 2400 0 scale 1.25 transform 90 adaptive_sync off
|
||||
output eDP-2 mode 2880x1800@120.000Hz pos 0 0 scale 2 adaptive_sync on allow_tearing yes
|
||||
output * max_render_time off
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
workspace 1 output DP-1
|
||||
workspace 2 output DP-1
|
||||
workspace 3 output DP-1
|
||||
workspace 4 output DP-1
|
||||
workspace 5 output DP-2
|
||||
workspace 6 output DP-2
|
||||
workspace 7 output DP-2
|
||||
workspace 8 output DP-2
|
||||
workspace 1 output eDP-2
|
||||
workspace 2 output eDP-2
|
||||
workspace 3 output eDP-2
|
||||
workspace 4 output eDP-2
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
// Choose the order of the modules
|
||||
"modules-left": ["sway/workspaces"],
|
||||
"modules-center": ["pulseaudio", "clock"],
|
||||
"modules-right": ["tray", "memory", "custom/power"],
|
||||
"modules-right": ["tray", "memory", "battery", "custom/power"],
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"sort-by-name": true,
|
||||
@@ -38,14 +38,17 @@
|
||||
"format": "{icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", ""]
|
||||
},
|
||||
"memory": {
|
||||
"format": "{used:0.1f}/{total:0.1f}G"
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon}",
|
||||
"format-charging": "",
|
||||
"format-plugged": "",
|
||||
"format": "🔋{capacity}%",
|
||||
"format-charging": "⚡{capacity}%",
|
||||
"format-plugged": "🔌{capacity}%",
|
||||
"format-alt": "{icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", "", "", "", ""]
|
||||
},
|
||||
|
||||
15
.config/waybar/power_menu.xml
Normal file
15
.config/waybar/power_menu.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<object class="GtkMenu" id="menu">
|
||||
<child>
|
||||
<object class="GtkMenuItem" id="shutdown">
|
||||
<property name="label">Shutdown</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkMenuItem" id="reboot">
|
||||
<property name="label">Reboot</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# ~/.bashrc
|
||||
# ~/.zshrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
@@ -8,12 +8,10 @@
|
||||
alias ls='ls --color=auto'
|
||||
alias grep='grep --color=auto'
|
||||
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||
PS1='[\u@\h \W]\$ '
|
||||
|
||||
eval "$(starship init bash)"
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
alias reboot-to-windows='sudo grub-reboot "Windows Boot Manager (on /dev/nvme1n1p1)" && sudo reboot'
|
||||
export PATH=~/.npm-global/bin:~/.local/bin:$PATH
|
||||
export SSH_AUTH_SOCK=/home/pmcc/.bitwarden-ssh-agent.sock
|
||||
|
||||
alias claude="/home/pmcc/.claude/local/claude"
|
||||
alias claude="/home/pmcc/.claude/local/claude"
|
||||
Reference in New Issue
Block a user