Skip to content
Snippets Groups Projects
Commit 68840e99 authored by KilakOriginal's avatar KilakOriginal
Browse files

Virtual keyboard, themes

parent 89324ba6
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ This is my Arch Linux configuration.
- [Hyprshot](https://github.com/Gustash/Hyprshot)
- [Flameshot](https://github.com/flameshot-org/flameshot/releases)
- [Waybar](https://github.com/Alexays/Waybar)
- [wvkbd](https://github.com/jjsullivan5196/wvkbd)
- [Neovim](https://neovim.io/)
- [packer.nvim](https://github.com/wbthomason/packer.nvim)
- For a list of plugins see `./config/nvim/lua/malik/packer.lua`
......
......@@ -10,8 +10,7 @@ monitor=,highres,auto,1
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
# Execute your favorite apps at launch
exec-once = waybar & hyprpaper
exec-once = sh ~/.config/scripts/auto/*.sh
exec-once = waybar & hyprpaper & dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP & sh ~/.config/scripts/auto/*.sh
# Source a file (multi-file configs)
# source = ~/.config/hypr/myColors.conf
......@@ -115,6 +114,14 @@ misc {
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
windowrulev2 = opacity 0.0 override 0.0 override,class:^(xwaylandvideobridge)$
windowrulev2 = noanim,class:^(xwaylandvideobridge)$
windowrulev2 = nofocus,class:^(xwaylandvideobridge)$
windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$
windowrulev2 = float,class:float1
windowrulev2 = size 80% 85%,class:float1
windowrulev2 = center,class:float1
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
$mainMod = SUPER
......@@ -139,10 +146,6 @@ bind = $mainMod, J, togglesplit, # dwindle
bind = $mainMod, T, exec, sh ~/.config/scripts/scratchpads.sh terminal
bind = $mainMod, M, exec, sh ~/.config/scripts/scratchpads.sh mega
windowrulev2 = float,class:float1
windowrulev2 = size 80% 85%,class:float1
windowrulev2 = center,class:float1
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
......
File mode changed from 100644 to 100755
......@@ -9,7 +9,7 @@
"height": 16,
// Choose the order of the modules
"modules-left": ["hyprland/workspaces"],
"modules-left": ["hyprland/workspaces", "custom/wvkbd"],
"modules-center": ["hyprland/window"],
"modules-right": ["pulseaudio", "network", "battery", "clock"],
......@@ -23,6 +23,12 @@
"tooltip": true,
"tooltip-format": "{app}: {title}"
},
"custom/wvkbd": {
"format": "{icon}",
"format-icons": [""],
"tooltip-format": "Toggle virtual keyboard",
"on-click": "if pgrep wvkbd-mobintl; then killall wvkbd-mobintl; else wvkbd-mobintl; fi"
},
"clock": {
// "timezone": "Europe/Berlin",
"format": "{:%H:%M}",
......
......@@ -68,6 +68,16 @@ window#waybar {
border: none;
}
#custom-wvkbd {
margin: 0 0 0 16px;
padding: 1px 10px;
color: #01161e;
background: #eff6e0;
opacity: 0.8;
border-radius: 18px;
border: none;
}
#battery,
#cpu,
#memory,
......@@ -76,8 +86,7 @@ window#waybar {
#backlight,
#network,
#pulseaudio,
#wireplumber,
#mode {
#wireplumber {
margin: 0 8px;
padding: 1px 10px;
color: #01161e;
......
......@@ -13,7 +13,7 @@ end
-- Config
-- Color scheme:
config.color_scheme = 'Colors (base16)' -- Colors (base16), Brewer (base16), Classic Dark (base16), ayu, Argonaut, Atelierdune (dark) (terminal.sexy)
config.color_scheme = 'Atelierdune (dark) (terminal.sexy)' -- Colors (base16), Brewer (base16), Classic Dark (base16), ayu, Argonaut, Atelierdune (dark) (terminal.sexy)
-- Window
config.window_background_opacity = 0.85
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment