Compare commits

...

5 Commits

5 changed files with 16 additions and 21 deletions

View File

@ -1,5 +1,6 @@
env = WLR_DRM_DEVICES,/dev/dri/card0:/dev/dri/card1
env = WLR_NO_HARDWARE_CURSORS,1
env = TERMINAL,alacritty
$scripts = /home/user/.config/scripts
@ -123,8 +124,8 @@ gestures {
$mainMod = SUPER
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
bindr = $mainMod, SUPER_L, exec, $scripts/toggle_rofi.sh
bindr = $mainMod, SUPER_R, exec, $scripts/toggle_rofi.sh
bindr = $mainMod, SUPER_L, exec, pkill rofi || rofi -show drun
bindr = $mainMod, SUPER_R, exec, pkill rofi || rofi -show drun
bind = $mainMod, return, exec, $scripts/launch_alacritty.sh $(hyprctl activewindow -j | jq .pid)
bind = $mainMod SHIFT, return, exec, alacritty
bind = $mainMod, Q, killactive,
@ -168,10 +169,10 @@ bind = $mainMod SHIFT, H, movewindow, l
bind = $mainMod SHIFT, L, movewindow, r
bind = $mainMod SHIFT, K, movewindow, u
bind = $mainMod SHIFT, J, movewindow, d
bind = $mainMod ALT, L, resizeactive, 20 0
bind = $mainMod ALT, H, resizeactive, -20 0
bind = $mainMod ALT, K, resizeactive, 0 -20
bind = $mainMod ALT, J, resizeactive, 0 20
binde = $mainMod ALT, L, resizeactive, 20 0
binde = $mainMod ALT, H, resizeactive, -20 0
binde = $mainMod ALT, K, resizeactive, 0 -20
binde = $mainMod ALT, J, resizeactive, 0 20
bind = $mainMod, 1, exec, hyprsome workspace 1
bind = $mainMod, 2, exec, hyprsome workspace 2

View File

@ -10,7 +10,8 @@ local function should_load(path)
[2] = "json.hpp",
[3] = "build",
[4] = "third-party",
[5] = "sfml",
[5] = "sfml/",
[5] = "SFML/",
[6] = "TinyXML"
}
local match = {

View File

@ -1,7 +0,0 @@
if ps -C rofi > /dev/null
then
killall rofi
else
export TERMINAL=alacritty
rofi -show combi -combi-modi drun,calc:~/.config/rofi/show-calculator.sh -sort -levenshtein-sort
fi

View File

@ -33,15 +33,15 @@ button:hover {
}
#workspaces button:hover {
background-color: #002F5F;
background-color: #023269;
}
#workspaces button.focused {
background-color: #002F5F;
background-color: #023269;
}
#workspaces button.active {
background-color: #002F5F;
background-color: #023269;
}
#workspaces button.urgent {
@ -77,7 +77,7 @@ button:hover {
#cpu.cpu2,
#memory,
#temperature {
background-color: #002F5F;
background-color: #023269;
}
#taskbar button {
@ -91,7 +91,7 @@ button:hover {
margin-bottom:2px;
}
#taskbar button.active {
background-color: #002F5F;
background-color: #023269;
}
#window {

View File

@ -189,5 +189,5 @@ alias python=python3
alias r=". ranger"
alias cpr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1
alias mvr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files
alias rg="rg --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
alias ag="rg --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
alias rg="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
alias ag="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"