update
This commit is contained in:
2
.config/code-flags.conf
Normal file
2
.config/code-flags.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
--enable-features=UseOzonePlatform
|
||||||
|
--ozone-platform=wayland
|
||||||
2
.config/electron-flags.conf
Normal file
2
.config/electron-flags.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
--enable-features=UseOzonePlatform
|
||||||
|
--ozone-platform=wayland
|
||||||
@ -8,5 +8,13 @@
|
|||||||
<edit name="embeddedbitmap">
|
<edit name="embeddedbitmap">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</edit>
|
</edit>
|
||||||
|
</match>
|
||||||
|
<match target="font">
|
||||||
|
<test qual="any" name="family">
|
||||||
|
<string>Aptos</string>
|
||||||
|
</test>
|
||||||
|
<edit name="embeddedbitmap">
|
||||||
|
<bool>false</bool>
|
||||||
|
</edit>
|
||||||
</match>
|
</match>
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
@ -50,6 +50,7 @@ exec-once = waybar
|
|||||||
# Open programs on special workspaces
|
# Open programs on special workspaces
|
||||||
exec-once = [ workspace special:term silent] $terminal
|
exec-once = [ workspace special:term silent] $terminal
|
||||||
exec-once = [ workspace special:browser silent] $browser "https://web.whatsapp.com" "https://mail.google.com/mail/u/0/\##inbox/\##wasteside\##container-wasteside"
|
exec-once = [ workspace special:browser silent] $browser "https://web.whatsapp.com" "https://mail.google.com/mail/u/0/\##inbox/\##wasteside\##container-wasteside"
|
||||||
|
exec-once = [ workspace special:browser silent] gnome-calendar
|
||||||
exec-once = [ workspace special:music silent] $terminal -e spotify_player
|
exec-once = [ workspace special:music silent] $terminal -e spotify_player
|
||||||
exec-once = [ workspace special:todo silent] clickup
|
exec-once = [ workspace special:todo silent] clickup
|
||||||
exec-once = [ workspace special:files silent] $fileManager
|
exec-once = [ workspace special:files silent] $fileManager
|
||||||
@ -194,7 +195,7 @@ input {
|
|||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||||
gestures {
|
gestures {
|
||||||
workspace_swipe = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Example per-device config
|
# Example per-device config
|
||||||
@ -336,6 +337,9 @@ windowrulev2 = float,title:^(.*Extension: Bitwarden.*)$
|
|||||||
# Always center ClickUp command bar
|
# Always center ClickUp command bar
|
||||||
windowrulev2 = center, title:ClickUp Command Bar
|
windowrulev2 = center, title:ClickUp Command Bar
|
||||||
|
|
||||||
|
# Dont use floating mode for freerdp
|
||||||
|
windowrulev2 = tile, class:xfreerdp
|
||||||
|
|
||||||
# Open audio settings in floating mode
|
# Open audio settings in floating mode
|
||||||
windowrulev2 = float, class:org.pulseaudio.pavucontrol
|
windowrulev2 = float, class:org.pulseaudio.pavucontrol
|
||||||
windowrulev2 = size 500 1000, class:org.pulseaudio.pavucontrol
|
windowrulev2 = size 500 1000, class:org.pulseaudio.pavucontrol
|
||||||
|
|||||||
@ -0,0 +1,17 @@
|
|||||||
|
# Disable all monitor sources (e.g. output mirrors) so they don't appear as input devices
|
||||||
|
monitor.rules = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
device.class = "monitor"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
device.nick = "Please Be Disabled"
|
||||||
|
device.disabled = true
|
||||||
|
device.description = "Disabled Monitor Source"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
16
.zshrc
16
.zshrc
@ -124,6 +124,9 @@ fi
|
|||||||
alias py=python3
|
alias py=python3
|
||||||
alias ll="ls -lah"
|
alias ll="ls -lah"
|
||||||
|
|
||||||
|
qrshow(){
|
||||||
|
qrencode $1 -o - | viu -
|
||||||
|
}
|
||||||
|
|
||||||
# Shortcuts
|
# Shortcuts
|
||||||
alias sshconfig="$EDITOR ~/.ssh/config"
|
alias sshconfig="$EDITOR ~/.ssh/config"
|
||||||
@ -167,6 +170,13 @@ HISTFILE=~/.histfile
|
|||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
|
|
||||||
|
# Android tools
|
||||||
|
export ANDROID_SDK_ROOT="$HOME/.local/opt/android-sdk"
|
||||||
|
export ANDROID_HOME="$ANDROID_SDK_ROOT"
|
||||||
|
export PATH="$PATH:$ANDROID_SDK_ROOT/cmdline-tools/latest/bin"
|
||||||
|
export PATH="$PATH:$ANDROID_SDK_ROOT/build-tools/36.0.0/"
|
||||||
|
export PATH="$PATH:$ANDROID_SDK_ROOT/emulator"
|
||||||
|
|
||||||
# Unlock hyprlock
|
# Unlock hyprlock
|
||||||
alias unlock=pkill -USR1 hyprlock
|
alias unlock=pkill -USR1 hyprlock
|
||||||
|
|
||||||
@ -180,11 +190,17 @@ export SDKMAN_DIR="$HOME/.sdkman"
|
|||||||
# Yarn
|
# Yarn
|
||||||
export PATH="$HOME/.yarn/bin:$PATH"
|
export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
|
|
||||||
|
# More path stuff
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
# pyenv stuff (make sure this is at the end of the file)
|
# pyenv stuff (make sure this is at the end of the file)
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
export PYENV_ROOT="$HOME/.pyenv"
|
||||||
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
||||||
eval "$(pyenv init -)"
|
eval "$(pyenv init -)"
|
||||||
|
|
||||||
|
#nvm
|
||||||
|
source /usr/share/nvm/init-nvm.sh
|
||||||
|
|
||||||
## [Completion]
|
## [Completion]
|
||||||
## Completion scripts setup. Remove the following line to uninstall
|
## Completion scripts setup. Remove the following line to uninstall
|
||||||
[[ -f /home/paul/.dart-cli-completion/zsh-config.zsh ]] && . /home/paul/.dart-cli-completion/zsh-config.zsh || true
|
[[ -f /home/paul/.dart-cli-completion/zsh-config.zsh ]] && . /home/paul/.dart-cli-completion/zsh-config.zsh || true
|
||||||
|
|||||||
Reference in New Issue
Block a user