Compare commits

...

3 commits

Author SHA1 Message Date
bb24154c42 update gtk config 2025-08-15 23:24:31 +02:00
a5fa1a7587 add the fuck 2025-08-15 23:22:50 +02:00
3038bf2052 add keybinds for rotation 2025-08-15 23:21:38 +02:00
3 changed files with 13 additions and 3 deletions

View file

@ -1,6 +1,8 @@
[Settings]
gtk-application-prefer-dark-theme=true
gtk-button-images=true
gtk-cursor-blink=true
gtk-cursor-blink-time=1000
gtk-cursor-theme-name=breeze_cursors
gtk-cursor-theme-size=24
gtk-decoration-layout=icon:minimize,maximize,close
@ -17,7 +19,7 @@ gtk-theme-name=Materia-dark
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-toolbar-style=3
gtk-xft-antialias=1
gtk-xft-dpi=98304
gtk-xft-dpi=147456
gtk-xft-hinting=1
gtk-xft-hintstyle=hintslight
gtk-xft-rgba=rgb

View file

@ -15,7 +15,7 @@
################
# See https://wiki.hyprland.org/Configuring/Monitors/
monitor=,highres@highrr,auto,auto, transform, 0
monitor=,highres@highrr,auto,auto,transform, 0
# Scalling
xwayland {
@ -250,7 +250,7 @@ bindl =, switch:off:[Lid Switch], exec, hyprctl sleep
binde = $mainMod, D, exec, makoctl dismiss
bind = $mainMod SHIFT, D, exec, makoctl dismiss -a
#Move focus with mainMod + vim keys
# Move focus with mainMod + vim keys
bind = $mainMod, H, movefocus, l
bind = $mainMod, J, movefocus, d
bind = $mainMod, K, movefocus, u
@ -274,6 +274,12 @@ binde = $mainMod SHIFT, I, resizeactive, 0 50
binde = $mainMod SHIFT, O, resizeactive, 0 -50
binde = $mainMod SHIFT, P, resizeactive, 50 0
# Rotate screen with mainMod + Shift + r + 1-4
bind = CONTROL_ALT, 1, exec, hyprctl keyword input:touchdevice:transform 0 ; hyprctl keyword input:tablet:transform 0 ; hyprctl keyword monitor ",highres@highrr, auto, auto, transform, 0"
bind = CONTROL_ALT, 2, exec, hyprctl keyword input:touchdevice:transform 1 ; hyprctl keyword input:tablet:transform 1 ; hyprctl keyword monitor ",highres@highrr, auto, auto, transform, 1"
bind = CONTROL_ALT, 3, exec, hyprctl keyword input:touchdevice:transform 2 ; hyprctl keyword input:tablet:transform 2 ; hyprctl keyword monitor ",highres@highrr, auto, auto, transform, 2"
bind = CONTROL_ALT, 4, exec, hyprctl keyword input:touchdevice:transform 3 ; hyprctl keyword input:tablet:transform 3 ; hyprctl keyword monitor ",highres@highrr, auto, auto, transform, 3"
# Switch workspaces with mainMod + [0-9]

2
.zshrc
View file

@ -118,6 +118,7 @@ alias needssh="git remote set-url origin \$(git remote get-url origin | sed -e '
alias icat="kitten icat --background white"
alias marptohtml="npx @marp-team/marp-cli@latest --html --theme-set themes/mytheme.css - template.md -o index.html"
alias output-on-all-devices="pactl load-module module-combine-sink"
alias remove-exif="exiftool -all= -overwrite_original"
alias fs="sudo rc-service filesync"
alias fs-sync='kill -SIGHUP "$(cat /run/filesync.pid)"'
alias fs-sync-offline='rclone bisync filesync:/files ~/.offline_filesync --conflict-resolve newer --conflict-loser num --timeout 2s --filter-from ~/.offline_filesync/.important-files.txt 2>&1 | grep conflict | grep home | sed -n "s/.*\x1b\[36m\([^[:cntrl:]]*\)\x1b\[0m.*/\1/p" | while read -r conflict; do notify-send "Conflict at $conflict"; echo "Conflict at $conflict" >> ~/.offline_filesync/.conflict_log.txt; done'
@ -131,3 +132,4 @@ export PATH="$PATH:/home/melody/.local/bin"
eval "$(zoxide init --cmd cd zsh)"
eval "$(starship init zsh)"
source <(fzf --zsh)
eval $(thefuck --alias)