cb wayland again

This commit is contained in:
Christoph J. Scherr 2023-12-01 22:08:35 +01:00
parent 34fd000145
commit b94383bb08
2 changed files with 4 additions and 4 deletions

View File

@ -142,7 +142,7 @@ custom_cpu_name = ""
#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". #* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user".
disks_filter="exclude=/boot /proc /boot/efi" disks_filter = "exclude=/boot /proc /boot/efi"
#* Show graphs instead of meters for memory values. #* Show graphs instead of meters for memory values.
mem_graphs = True mem_graphs = True
@ -209,4 +209,4 @@ selected_battery = "Auto"
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING" log_level = "WARNING"

4
.zshrc
View File

@ -6,12 +6,12 @@ export editor=nvim
export XDG_CONFIG_HOME=~/.config export XDG_CONFIG_HOME=~/.config
export TIMEFMT=$'\nreal\t%E\nuser\t%U\nsys\t%S\ncpu\t%P' export TIMEFMT=$'\nreal\t%E\nuser\t%U\nsys\t%S\ncpu\t%P'
export ZSH=$HOME/.zsh export ZSH=$HOME/.zsh
export CLIPBOARD_NOGUI=0 # wayland only allows GUI apps to use the clipboard. export CLIPBOARD_NOGUI=1 # wayland only allows GUI apps to use the clipboard.
# cb would have to open every 2 seconds and steal # cb would have to open every 2 seconds and steal
# focus. This sucks, so I will have to disable GUI # focus. This sucks, so I will have to disable GUI
# integration (yes that means ctrl+v) for now. # integration (yes that means ctrl+v) for now.
# #
# For wayland, set this to `1` # For wayland, set this to `1`
# see https://github.com/Slackadays/Clipboard/issues/171 # see https://github.com/Slackadays/Clipboard/issues/171