diff --git a/.config/cosmic/com.system76.CosmicComp/v1/input_touchpad b/.config/cosmic/com.system76.CosmicComp/v1/input_touchpad new file mode 100644 index 0000000..6f0126b --- /dev/null +++ b/.config/cosmic/com.system76.CosmicComp/v1/input_touchpad @@ -0,0 +1,13 @@ +( + state: Enabled, + acceleration: Some(( + profile: Some(Flat), + speed: 0.0, + )), + scroll_config: Some(( + method: Some(TwoFinger), + natural_scroll: Some(false), + scroll_button: None, + scroll_factor: None, + )), +) \ No newline at end of file diff --git a/.config/cosmic/com.system76.CosmicSettings.Shortcuts/v1/custom b/.config/cosmic/com.system76.CosmicSettings.Shortcuts/v1/custom index a3ac285..ce9fd59 100644 --- a/.config/cosmic/com.system76.CosmicSettings.Shortcuts/v1/custom +++ b/.config/cosmic/com.system76.CosmicSettings.Shortcuts/v1/custom @@ -3,7 +3,17 @@ modifiers: [ Super, ], - ): System(Launcher), + key: "n", + description: Some("New Session"), + ): Spawn(" zsh -c \"$HOME/.config/scripts/sessions.sh new\""), + ( + modifiers: [ + Super, + Shift, + ], + key: "n", + description: Some("New Goland Session"), + ): Spawn(" zsh -c \"$HOME/.config/scripts/sessions.sh goland-new\""), ( modifiers: [], key: "Print", @@ -14,4 +24,9 @@ ], key: "p", ): System(Screenshot), + ( + modifiers: [ + Super, + ], + ): System(Launcher), } \ No newline at end of file diff --git a/.config/cosmic/dev.edfloreshz.CosmicTweaks/v1/snapshots b/.config/cosmic/dev.edfloreshz.CosmicTweaks/v1/snapshots new file mode 100644 index 0000000..f86ab5f --- /dev/null +++ b/.config/cosmic/dev.edfloreshz.CosmicTweaks/v1/snapshots @@ -0,0 +1,8 @@ +[ + ( + name: "Application opened", + kind: System, + path: "/home/user/.var/app/dev.edfloreshz.CosmicTweaks/data/dev.edfloreshz.CosmicTweaks/snapshots/Application opened.ron", + created: "2025-06-15T12:39:30.046585189", + ), +] \ No newline at end of file diff --git a/.config/shell/functions.zsh b/.config/shell/functions.zsh index c066e22..143b821 100644 --- a/.config/shell/functions.zsh +++ b/.config/shell/functions.zsh @@ -1,3 +1,6 @@ +isSet() { [ ! -z "${1}" ]; } +isNotSet() { [ -z "${1}" ]; } + set-cred () { export BW_SESSION="$(bw unlock $(secret-tool lookup drive bitwarden) --raw)" diff --git a/ansible/roles/packages/vars/Archlinux.yml b/ansible/roles/packages/vars/Archlinux.yml index b9c038a..384a161 100644 --- a/ansible/roles/packages/vars/Archlinux.yml +++ b/ansible/roles/packages/vars/Archlinux.yml @@ -108,6 +108,7 @@ required_packages_pacman: - python-pyperclip - python-adblock - linux-headers + - traceroute flatpak_remote: - { name: "flathub", url: "https://dl.flathub.org/repo/flathub.flatpakrepo" }