updated 'config-files'

This commit is contained in:
Luc Bijl 2023-04-20 13:34:13 +02:00
parent 817a0ab4d3
commit 5d89dc2885
7 changed files with 48 additions and 22 deletions

View file

@ -1,14 +1,3 @@
# .bash_profile
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
export MOZ_ENABLE_WAYLAND=1
fi
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
export GDK_BACKEND=wayland
fi
mkdir -m 0700 -p /tmp/$(id -u)
export XDG_RUNTIME_DIR=/tmp/$(id -u)
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc

View file

@ -2,15 +2,23 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
PS1="[\u@\h \W]\$ "
TERM=xterm-256color
alias die="pkill -9 "
alias bye="doas poweroff "
alias rb="doas reboot "
alias d="doas "
alias ls="ls --color=auto"
alias l="ls -l "
alias ds="dirs -v "
alias pd="pushd "
alias pp="popd "
alias xbi="doas xbps-install "
alias xbr="doas xbps-remove "
alias xbq="xbps-query "
alias xbrc="doas xbps-reconfigure "
export XBPS_DISTDIR=$HOME/void-packages
export PATH=$HOME/packages/anaconda/bin:$PATH

View file

@ -1,5 +1,28 @@
# Foot config
font=monospace:size=12
initial-window-size-pixels=1500x800
[colors]
background=000000
foreground=dcdccc
alpha=0.5
## Normal/regular colors (color palette 0-7)
regular0=222222 # black
regular1=cc9393 # red
regular2=7f9f7f # green
regular3=d0bf8f # yellow
regular4=6ca0a3 # blue
regular5=dc8cc3 # magenta
regular6=93e0e3 # cyan
regular7=dcdccc # white
## Bright colors (color palette 8-15)
bright0=666666 # bright black
bright1=dca3a3 # bright red
bright2=bfebbf # bright green
bright3=f0dfaf # bright yellow
bright4=8cd0d3 # bright blue
bright5=fcace3 # bright magenta
bright6=b3ffff # bright cyan
bright7=ffffff # bright white

View file

@ -1,15 +1,17 @@
# Beware! This file is rewritten by htop when settings are changed in the interface.
# The parser is also very primitive, and not human-friendly.
htop_version=3.2.1
htop_version=3.2.2
config_reader_min_version=3
fields=0 48 17 18 38 39 40 2 46 47 49 1
hide_kernel_threads=1
hide_userland_threads=0
hide_running_in_container=0
shadow_other_users=0
show_thread_names=0
show_program_path=1
highlight_base_name=0
highlight_deleted_exe=0
shadow_distribution_path_prefix=0
highlight_megabytes=1
highlight_threads=1
highlight_changes=0
@ -23,7 +25,7 @@ detailed_cpu_time=0
cpu_count_from_one=0
show_cpu_usage=1
show_cpu_frequency=1
show_cpu_temperature=0
show_cpu_temperature=1
degree_fahrenheit=0
update_process_names=0
account_guest_in_cpu_meter=0

View file

@ -1,7 +1,10 @@
[core]
close_top_view = <super> KEY_Q | <alt> KEY_F4
focus_button_with_modifiers = false
focus_buttons = BTN_LEFT | BTN_MIDDLE | BTN_RIGHT
focus_buttons_passthrough = true
max_render_time = -1
plugins = animate autostart blur cube command idle window-rules
plugins = animate autostart blur cube command idle
preferred_decoration_mode = server
vheight = 3
vwidth = 3

View file

@ -26,6 +26,7 @@ autostart_wf_shell = false
background = wf-background
bar = waybar
element = element-desktop --hidden --enable-features=UseOzonePlatform --ozone-platform=wayland
gamma = wlsunset -l 52.0 -L 5.9 -t 3000
idle = swayidle -w timeout 590 gtklock before-sleep gtklock
network = sleep 5; nm-applet --indicator
notifications = mako
@ -78,8 +79,8 @@ command_mute = pamixer -t
command_next = playerctl next
command_playpause = playerctl play-pause
command_previous = playerctl previous
command_screenshot = grim $(date '+%F_%T').png
command_screenshot_interactive = slurp | grim -g - $(date '+%F_%T').png
command_screenshot = grim - | wl-copy -t image/png
command_screenshot_interactive = pkill -9 slurp; grim -g "$(slurp -d)" - | wl-copy -t image/png
command_terminal = foot
command_volumedown = pamixer -d 5 -u
command_volumeup = pamixer -i 5 -u
@ -94,7 +95,7 @@ focus_button_with_modifiers = false
focus_buttons = BTN_LEFT | BTN_MIDDLE | BTN_RIGHT
focus_buttons_passthrough = true
max_render_time = -1
plugins = alpha animate autostart command cube expo grid idle move oswitch place resize vswitch window-rules wm-actions zoom blur fast-switcher wobbly preserve-output wrot
plugins = alpha animate autostart command cube expo grid idle move oswitch place resize vswitch window-rules wm-actions zoom blur fast-switcher wobbly preserve-output wrot
preferred_decoration_mode = server
vheight = 3
vwidth = 3

View file

@ -6,13 +6,13 @@
}
{
"label" : "hibernate",
"action" : "gtklock & pkexec /bin/zzz -Z",
"action" : "gtklock &; pkexec /bin/zzz -Z",
"text" : "Hibernate",
"keybind" : "h"
}
{
"label" : "logout",
"action" : "loginctl terminate-user $USER",
"action" : "pkill -9 wayfire",
"text" : "Logout",
"keybind" : "e"
}
@ -24,7 +24,7 @@
}
{
"label" : "suspend",
"action" : "gtklock & pkexec /bin/zzz -z",
"action" : "gtklock &; pkexec /bin/zzz -z",
"text" : "Suspend",
"keybind" : "u"
}