Skip to content
Snippets Groups Projects
Verified Commit b3d3a3e2 authored by Andreas Gerlach's avatar Andreas Gerlach
Browse files

[sway] handle network / bluetooth via commandlets from waybar

parent 6a6aa612
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,6 @@ avahi ...@@ -35,7 +35,6 @@ avahi
firewalld firewalld
networkmanager networkmanager
networkmanager-openvpn networkmanager-openvpn
network-manager-applet
dhclient dhclient
manjaro-hotfixes manjaro-hotfixes
manjaro-settings-samba manjaro-settings-samba
...@@ -69,6 +68,7 @@ kvantum-theme-matchama ...@@ -69,6 +68,7 @@ kvantum-theme-matchama
lxappearance lxappearance
gtk3-nocsd gtk3-nocsd
gtk4 gtk4
glfw-wayland
matcha-gtk-theme matcha-gtk-theme
manjaro-arm-wallpapers manjaro-arm-wallpapers
papirus-maia-icon-theme papirus-maia-icon-theme
......
/* import css definitions for current theme */ /* import css definitions for current theme */
@import url("./theme.css"); @import url("./theme.css");
#outer-box {
border: 1px solid @accent_color;
}
#input { #input {
border: none; border: none;
border-radius: 0px; border-radius: 0px;
margin: 10px;
} }
#text { #text {
...@@ -13,5 +18,5 @@ ...@@ -13,5 +18,5 @@
window { window {
border: 2px solid @accent_color; border: 2px solid @accent_color;
color: @text_color; color: @text_color;
border-radius: 5px; border-radius: none;
} }
/* import css definitions for current theme */
@import url("./theme.css");
#outer-box {
border: 1px solid @accent_color;
}
#input {
border: none;
border-radius: 0px;
visibility: hidden;
}
#text {
margin-left: 1em;
}
window {
border: 2px solid @accent_color;
color: @text_color;
border-radius: 5px;
}
...@@ -10,7 +10,7 @@ FIRST_RUN=$HOME/.firstrun ...@@ -10,7 +10,7 @@ FIRST_RUN=$HOME/.firstrun
if [ -f $PIDFILE ]; then exit 1; fi if [ -f $PIDFILE ]; then exit 1; fi
spawn_help_overlay() { spawn_help_overlay() {
cat <<EOF | wofi --show dmenu "$@" cat <<EOF | wofi --show dmenu --style $HOME/.config/wofi/swhelp.css "$@"
<b>Manjaro ARM Sway Edition</b> <b>Manjaro ARM Sway Edition</b>
Default Modifier: <b>Alt</b> Default Modifier: <b>Alt</b>
New Terminal: <b>\$mod</b> + <b>Enter</b> New Terminal: <b>\$mod</b> + <b>Enter</b>
......
...@@ -7,6 +7,7 @@ exec --no-startup-id mako ...@@ -7,6 +7,7 @@ exec --no-startup-id mako
exec --no-startup-id mntray exec --no-startup-id mntray
exec --no-startup-id $help --autostart exec --no-startup-id $help --autostart
# optional: tray applications # disable appindicator for bluetooth
# exec --no-startup-id nm-applet --indicator exec_always {
# exec --no-startup-id blueman-applet gsettings set org.blueman.general plugin-list "['\!AppIndicator']"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment