added bind for hyprpicker
parent
39671601f5
commit
23420a0f93
|
|
@ -1,4 +1,4 @@
|
||||||
#? Config file for btop v. 1.4.3
|
#? Config file for btop v. 1.4.5
|
||||||
|
|
||||||
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
|
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
|
||||||
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
|
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
|
||||||
|
|
@ -115,6 +115,9 @@ cpu_bottom = False
|
||||||
#* Shows the system uptime in the CPU box.
|
#* Shows the system uptime in the CPU box.
|
||||||
show_uptime = True
|
show_uptime = True
|
||||||
|
|
||||||
|
#* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo.
|
||||||
|
show_cpu_watts = True
|
||||||
|
|
||||||
#* Show cpu temperature.
|
#* Show cpu temperature.
|
||||||
check_temp = True
|
check_temp = True
|
||||||
|
|
||||||
|
|
@ -150,7 +153,7 @@ background_update = True
|
||||||
custom_cpu_name = ""
|
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".
|
#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user"
|
||||||
disks_filter = ""
|
disks_filter = ""
|
||||||
|
|
||||||
#* Show graphs instead of meters for memory values.
|
#* Show graphs instead of meters for memory values.
|
||||||
|
|
|
||||||
|
|
@ -254,6 +254,7 @@ bind = $mainMod SHIFT, Q, exec, hyprctl kill
|
||||||
#screenshot capture
|
#screenshot capture
|
||||||
bind = , Print, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/screenshot.sh
|
bind = , Print, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/screenshot.sh
|
||||||
bind = $mainMod, P, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/screenshot.sh
|
bind = $mainMod, P, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/screenshot.sh
|
||||||
|
bind = $mainMod SHIFT, P, exec, hyprpicker | wl-copy
|
||||||
|
|
||||||
#audio controls
|
#audio controls
|
||||||
binde =, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%+
|
binde =, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
[Default Applications]
|
[Default Applications]
|
||||||
text/plain=nvim.desktop
|
text/plain=nvim.desktop
|
||||||
image/svg+xml=org.inkscape.Inkscape.desktop
|
image/svg+xml=org.inkscape.Inkscape.desktop
|
||||||
|
|
@ -7,3 +6,10 @@ image/png=gimp.desktop
|
||||||
x-scheme-handler/discord=vesktop.desktop
|
x-scheme-handler/discord=vesktop.desktop
|
||||||
x-scheme-handler/ror2mm=gale-handler.desktop
|
x-scheme-handler/ror2mm=gale-handler.desktop
|
||||||
x-scheme-handler/gale=gale-handler.desktop
|
x-scheme-handler/gale=gale-handler.desktop
|
||||||
|
application/zip=thunar.desktop
|
||||||
|
terminal=kitty.desktop
|
||||||
|
TerminalEmulator=kitty.desktop
|
||||||
|
|
||||||
|
[Added Associations]
|
||||||
|
application/zip=org.kde.ark.desktop;thunar.desktop;
|
||||||
|
application/x-compressed-tar=thunar.desktop;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
TerminalEmulator=kitty
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.1" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<channel name="thunar-shares-plugin" version="1.0">
|
||||||
|
<property name="show-menu-contribution" type="bool" value="true"/>
|
||||||
|
</channel>
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.1" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<channel name="thunar" version="1.0">
|
||||||
|
<property name="last-view" type="string" value="ThunarIconView"/>
|
||||||
|
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_250_PERCENT"/>
|
||||||
|
<property name="last-window-maximized" type="bool" value="true"/>
|
||||||
|
<property name="last-separator-position" type="int" value="170"/>
|
||||||
|
<property name="misc-single-click" type="bool" value="false"/>
|
||||||
|
</channel>
|
||||||
Loading…
Reference in New Issue